namespace watcher_monitoring.Storage; public class DashboardStore : IDashboardStore { public string? NetworkStatus { get; set; } = "offline"; public string? DatabaseStatus { get; set; } = "ok"; public int ServerTotalCount { get; set; } = 0; public int ServerOnlineCount { get; set; } = 0; public int ServerOfflineCount { get; set; } = 0; public int ServiceTotalCount { get; set; } = 0; public DateTime ServerUptime { get; set; } }