Supercell.GUT/Supercell.GUT.Server/Protocol/Attributes/ServiceNodeAttribute.cs

13 lines
298 B
C#
Raw Normal View History

namespace Supercell.GUT.Server.Protocol.Attributes;
[AttributeUsage(AttributeTargets.Class)]
internal class ServiceNodeAttribute : Attribute
{
public int ServiceNodeType { get; }
public ServiceNodeAttribute(int serviceNodeType)
{
ServiceNodeType = serviceNodeType;
}
}