mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
15 lines
320 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|