basic Dashboard

This commit is contained in:
2025-06-14 20:35:42 +02:00
parent 30758bbd88
commit 1597409365
8 changed files with 409 additions and 26 deletions

View File

@@ -0,0 +1,11 @@
namespace Watcher.ViewModels
{
public class DashboardViewModel
{
public int ActiveServers { get; set; }
public int OfflineServers { get; set; }
public int RunningContainers { get; set; }
public int FailedContainers { get; set; }
public DateTime LastLogin { get; set; }
}
}