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