mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
27 lines
613 B
C#
27 lines
613 B
C#
#nullable disable
|
|
using CommandLine;
|
|
using NadekoBot.Common;
|
|
|
|
namespace NadekoBot.Modules.Help.Common;
|
|
|
|
public class CommandsOptions : INadekoCommandOptions
|
|
{
|
|
public enum ViewType
|
|
{
|
|
Hide,
|
|
Cross,
|
|
All
|
|
}
|
|
|
|
[Option('v',
|
|
"view",
|
|
Required = false,
|
|
Default = ViewType.Hide,
|
|
HelpText =
|
|
"Specifies how to output the list of commands. 0 - Hide commands which you can't use, 1 - Cross out commands which you can't use, 2 - Show all.")]
|
|
public ViewType View { get; set; } = ViewType.Hide;
|
|
|
|
public void NormalizeOptions()
|
|
{
|
|
}
|
|
} |