namespace Server; [AttributeUsage(AttributeTargets.Method, Inherited = false)] public sealed class CommandAttribute : Attribute { public string Name { get; } public CommandAttribute(string name) { Name = name; } }