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; } }