KafkaSR/RPG.Services.Gameserver/Modules/Attributes/GMCommandAttribute.cs

13 lines
271 B
C#
Raw Normal View History

2024-01-29 23:49:21 +00:00
namespace RPG.Services.Gameserver.Modules.Attributes;
[AttributeUsage(AttributeTargets.Method)]
internal class GMCommandAttribute : Attribute
{
public string Command { get; }
public GMCommandAttribute(string command)
{
Command = command;
}
}