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

13 lines
289 B
C#
Raw Normal View History

namespace Supercell.GUT.Server.Protocol.Attributes;
[AttributeUsage(AttributeTargets.Method)]
internal class MessageHandlerAttribute : Attribute
{
public int MessageType { get; }
public MessageHandlerAttribute(int messageType)
{
MessageType = messageType;
}
}