From 0df6ae6932a3c3d44ae58a6f182f8852a3d3d8c0 Mon Sep 17 00:00:00 2001 From: Filip Strajnar Date: Sun, 16 Jun 2024 00:28:49 +0200 Subject: [PATCH] Added author property to ScanOptions. --- DiscordDelete/ScanOptions.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DiscordDelete/ScanOptions.cs b/DiscordDelete/ScanOptions.cs index 1555029..d64c063 100644 --- a/DiscordDelete/ScanOptions.cs +++ b/DiscordDelete/ScanOptions.cs @@ -14,5 +14,8 @@ namespace DiscordDelete [Option('c', "channel", Required = true)] public string? ChannelId { get; set; } + + [Option('a', "author", Required = true)] + public string? Author { get; set; } } }