using System; using System.Collections.Generic; using ProtoBuf; namespace KKSG { [ProtoContract(Name = "EnterSceneCoolDownNotify")] [Serializable] public class EnterSceneCoolDownNotify : IExtensible { [ProtoMember(1, Name = "groupid", DataFormat = DataFormat.TwosComplement)] public List groupid { get { return this._groupid; } } [ProtoMember(2, Name = "cooldown", DataFormat = DataFormat.TwosComplement)] public List cooldown { get { return this._cooldown; } } private readonly List _groupid = new List(); private readonly List _cooldown = new List(); private IExtension extensionObject; IExtension IExtensible.GetExtensionObject(bool createIfMissing) { return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); } } }