10 lines
272 B
C#
10 lines
272 B
C#
|
using NahidaImpact.Protocol;
|
|||
|
|
|||
|
namespace NahidaImpact.Gameserver.Controllers.Attributes;
|
|||
|
|
|||
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|||
|
internal class NetCommandAttribute(CmdType cmdType) : Attribute
|
|||
|
{
|
|||
|
public CmdType CmdType { get; } = cmdType;
|
|||
|
}
|