WutheringWaves/GameServer/Controllers/Attributes/ChatCommandAttribute.cs

13 lines
266 B
C#
Raw Normal View History

2024-02-14 21:22:21 +00:00
namespace GameServer.Controllers.Attributes;
[AttributeUsage(AttributeTargets.Method)]
internal class ChatCommandAttribute : Attribute
{
public string Command { get; }
public ChatCommandAttribute(string command)
{
Command = command;
}
}