WutheringWaves/GameServer/Controllers/Attributes/ChatCommandDescAttribute.cs

13 lines
290 B
C#
Raw Normal View History

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