forked from EllieBotDevs/elliebot
14 lines
No EOL
296 B
C#
14 lines
No EOL
296 B
C#
#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()
|
|
{
|
|
}
|
|
} |