using System; using System.Collections.Generic; using ProtoBuf; namespace KKSG { [ProtoContract(Name = "ReqGuildArenaHistoryRse")] [Serializable] public class ReqGuildArenaHistoryRse : IExtensible { [ProtoMember(1, Name = "history", DataFormat = DataFormat.Default)] public List history { get { return this._history; } } private readonly List _history = new List(); private IExtension extensionObject; IExtension IExtensible.GetExtensionObject(bool createIfMissing) { return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); } } }