UI Routing and dead buttons fix
This commit is contained in:
20
watcher-monitoring/ViewModels/HomeViewModel.cs
Normal file
20
watcher-monitoring/ViewModels/HomeViewModel.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user