namespace RPG.Services.Gameserver.Modules.Attributes; [AttributeUsage(AttributeTargets.Method)] internal class GMCommandAttribute : Attribute { public string Command { get; } public GMCommandAttribute(string command) { Command = command; } }