mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
14 lines
298 B
C#
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()
|
|
{
|
|
}
|
|
} |