using MemoryPack; namespace NetCore.Protocol.MemoryPack; /// /// 中转服发送给逻辑服的数据 /// [MemoryPackable] public partial class InternalMemoryResponese { /// /// 发送消息类型 /// [MemoryPackOrder(0)] public InternalSendType SendType; /// /// 客户端的请求连接ID /// [MemoryPackOrder(1)] public long ClinetConnectionId; /// /// 发送的序列号 /// [MemoryPackOrder(2)] public long sendSequence; /// /// 中转的信息 /// [MemoryPackOrder(10)] public byte[] TransitData; }