using System; using System.IO; using KKSG; using ProtoBuf; namespace XMainClient { internal class PtcM2C_GroupChatApply : Protocol { public GroupChatApplyNtf Data = new GroupChatApplyNtf(); public override uint GetProtoType() { return 34424u; } public override void Serialize(MemoryStream stream) { Serializer.Serialize(stream, this.Data); } public override void DeSerialize(MemoryStream stream) { this.Data = Serializer.Deserialize(stream); } public override void Process() { Process_PtcM2C_GroupChatApply.Process(this); } } }