KafkaSR/RPG.Services.Gameserver/Modules/Attributes/GMCommandAttribute.cs
2024-01-30 02:49:21 +03:00

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;
}
}