Supercell.GUT/Supercell.GUT.Server/Protocol/Attributes/ServiceNodeAttribute.cs
BreadDEV ad23f95319 [v0.0.1] very early state server
only basic messages, wip.
2024-03-04 20:19:32 +07:00

12 lines
298 B
C#

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