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