9 lines
354 B
C#
9 lines
354 B
C#
|
namespace MinecraftDiscordBot.Commands;
|
|||
|
|
|||
|
[AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
|
|||
|
public sealed class CommandHandlerAttribute : Attribute {
|
|||
|
public CommandHandlerAttribute(string commandName) => CommandName = commandName;
|
|||
|
public string CommandName { get; }
|
|||
|
public string? HelpText { get; init; }
|
|||
|
}
|