17 lines
No EOL
716 B
C#
17 lines
No EOL
716 B
C#
namespace Web.ViewModel.DashboardVM
|
|
{
|
|
public class DashboardViewModel
|
|
{
|
|
// Keep your existing properties
|
|
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; }
|
|
|
|
// ADD THIS NEW PROPERTY
|
|
public SurveyAnalyticsViewModel SurveyAnalytics { get; set; } = new SurveyAnalyticsViewModel();
|
|
}
|
|
} |