12 lines
290 B
C#
12 lines
290 B
C#
namespace GameServer.Controllers.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
internal class ChatCommandDescAttribute : Attribute
|
|
{
|
|
public string Description { get; }
|
|
|
|
public ChatCommandDescAttribute(string description)
|
|
{
|
|
Description = description;
|
|
}
|
|
}
|