using SQLitePCL; using watcher_monitoring.Data; using watcher_monitoring.Models; namespace watcher_monitoring.ViewModels; public class HomeViewModel { public List servers { get; set; } = new(); public List containers { get; set; } = new(); public int serversCount { get; set; } public int serversOnline { get; set; } public int serversOffline { get; set; } public int containersCount { get; set; } }