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