KafkaSR/RPG.Services.Core/Network/Attributes/ServiceCommandAttribute.cs

15 lines
339 B
C#
Raw Permalink Normal View History

2024-01-29 23:49:21 +00:00
using RPG.Network.Proto;
namespace RPG.Services.Core.Network.Attributes;
[AttributeUsage(AttributeTargets.Method)]
public class ServiceCommandAttribute : Attribute
{
public ServiceCommandType CommandType { get; }
public ServiceCommandAttribute(ServiceCommandType commandType)
{
CommandType = commandType;
}
}