Snowflake/RPG.Services.Gameserver/Modules/Attributes/GMAliasAttribute.cs

12 lines
258 B
C#

namespace RPG.Services.Gameserver.Modules.Attributes;
[AttributeUsage(AttributeTargets.Class)]
internal class GMAliasAttribute : Attribute
{
public string Alias { get; }
public GMAliasAttribute(string alias)
{
Alias = alias;
}
}