continuity/Server/Packets/SerializationUtilities/PacketId.cs

12 lines
205 B
C#
Raw Normal View History

2023-08-10 08:47:35 +00:00
namespace Server.Packets.SerializationUtilities;
2023-08-09 14:23:41 +00:00
2023-08-09 18:14:14 +00:00
public class PacketId : Attribute
2023-08-09 14:23:41 +00:00
{
public readonly OperationCode Code;
2023-08-09 18:14:14 +00:00
public PacketId(OperationCode code)
2023-08-09 14:23:41 +00:00
{
Code = code;
}
}