Files
nadekobot/NadekoBot.Core/Common/LbOpts.cs
2021-09-06 21:29:22 +02:00

15 lines
320 B
C#

using CommandLine;
namespace NadekoBot.Core.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()
{
}
}
}