using RPG.Network.Proto; namespace RPG.Services.Gameserver.Modules.Attributes; [AttributeUsage(AttributeTargets.Method)] internal class OnCommandAttribute : Attribute { public CmdType CmdType { get; } public OnCommandAttribute(CmdType cmdType) { CmdType = cmdType; } }