| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace ReportWeb.Models
- {
- public class DashboardModel
- {
- public List<DailyReport> listDailyReport { get; set; }
- public List<DailyReport> listDailyReportTotal { get; set; }
- public List<DailyReport> listHourlyReportTotal { get; set; }
- public List<DailyReport> yesterdayReport { get; set; }
- public List<DailyReport> todayReport { get; set; }
- public List<DailyReport> 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; }
-
- }
- }
|