Files
Watcher/watcher-monitoring/Storage/IDashboardStore.cs
triggermeelmo e72bc48cc4
Some checks failed
Gitea CI/CD / dotnet-build-and-test (push) Has been cancelled
Gitea CI/CD / Set Tag Name (push) Has been cancelled
Gitea CI/CD / docker-build-and-push (push) Has been cancelled
Gitea CI/CD / Create Tag (push) Has been cancelled
init
2025-12-05 09:19:46 +01:00

18 lines
448 B
C#

namespace watcher_monitoring.Storage;
public class 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; }
}