netmonitor/NetMonitorServer/ServerModel.cs
2026-08-04 14:54:51 +02:00

19 lines
455 B
C#

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