Files
nadekobot/src/NadekoBot/Common/LbOpts.cs
2021-12-29 06:07:16 +01:00

14 lines
298 B
C#

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