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