SurveyVista/Web/ViewModel/DashboardVM/DashboardViewModel.cs
2024-06-06 15:24:04 +02:00

15 lines
556 B
C#

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