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