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