namespace Web.ViewModel.DashboardVM { public class DashboardViewModel { public Dictionary? ModelCounts { get; set; } public Dictionary? BannerSelections { get; set; } public Dictionary? FooterSelections { get; set; } public string? FirstName { get; set; } public string? LastName { get; set; } public List? PerformanceData { get; set; } public List? VisitorData { get; set; } // New property } }