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