WutheringWaves/GameServer/Controllers/Attributes/ChatCommandCategoryAttribute.cs

13 lines
285 B
C#
Raw Normal View History

2024-02-14 21:22:21 +00:00
namespace GameServer.Controllers.Attributes;
[AttributeUsage(AttributeTargets.Class)]
internal class ChatCommandCategoryAttribute : Attribute
{
public string Category { get; }
public ChatCommandCategoryAttribute(string category)
{
Category = category;
}
}