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