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