using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ReportWeb.Models { public class DashboardModel { public List listDailyReport { get; set; } public List listDailyReportTotal { get; set; } public List listHourlyReportTotal { get; set; } public List yesterdayReport { get; set; } public List todayReport { get; set; } public List yesterdayHourlyReport { get; set; } public long totalRevenue { get; set; } public long newSubs { get; set; } public long totalSubs { get; set; } public long avg7TotalRevenue { get; set; } public long avg7NewSubs { get; set; } public long avg7TotalSubs { get; set; } } }