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