UI Routing and dead buttons fix

This commit is contained in:
2026-01-20 15:15:31 +01:00
parent b01cf1fd50
commit 742eb37694
6 changed files with 531 additions and 34 deletions

View File

@@ -0,0 +1,20 @@
using SQLitePCL;
using watcher_monitoring.Data;
using watcher_monitoring.Models;
namespace watcher_monitoring.ViewModels;
public class HomeViewModel
{
public List<Server> servers { get; set; } = new();
public List<Container> containers { get; set; } = new();
public int serversCount { get; set; }
public int serversOnline { get; set; }
public int serversOffline { get; set; }
public int containersCount { get; set; }
}