DiscordClient/DiscordDelete/ScanOptions.cs

19 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CommandLine;
namespace DiscordDelete
{
[Verb("scan", HelpText = "Delete all saved messages.")]
public class ScanOptions
{
[Option('g', "guild")]
public string? GuildId { get; set; }
[Option('c', "channel", Required = true)]
public string? ChannelId { get; set; }
}
}