12 lines
271 B
C#
12 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;
|
|
}
|
|
}
|