using System; using System.Collections.Generic; using BlubbFish.Utils; using NetMonitorServer.Controller; namespace NetMonitorServer { class ServerModel : OwnSingeton { /// /// Openvpn Instanzen Dictionary /// public Dictionary openvpnInstances; private ServerModel() => this.openvpnInstances = new Dictionary(); } }