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