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