Files
Watcher/watcher-monitoring/ViewModels/HomeViewModel.cs

20 lines
449 B
C#

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; }
}