elliebot/src/EllieBot/_common/LbOpts.cs

14 lines
296 B
C#
Raw Normal View History

#nullable disable
using CommandLine;
namespace EllieBot.Common;
public class LbOpts : IEllieCommandOptions
{
[Option('c', "clean", Default = false, HelpText = "Only show users who are on the server.")]
public bool Clean { get; set; }
public void NormalizeOptions()
{
}
}