2023-11-06 09:11:36 +00:00
|
|
|
namespace Wonderking.Packets;
|
2023-08-12 21:02:59 +00:00
|
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
|
|
public class PacketIdAttribute : Attribute
|
|
|
|
{
|
|
|
|
public PacketIdAttribute(OperationCode code) => this.Code = code;
|
|
|
|
public OperationCode Code { get; }
|
|
|
|
}
|