18 lines
448 B
C#
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; }
|
|
} |