DashboardModel.cs 843 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace ReportWeb.Models
  6. {
  7. public class DashboardModel
  8. {
  9. public List<DailyReport> listDailyReport { get; set; }
  10. public List<DailyReport> listDailyReportTotal { get; set; }
  11. public List<DailyReport> listHourlyReportTotal { get; set; }
  12. public List<DailyReport> yesterdayReport { get; set; }
  13. public List<DailyReport> todayReport { get; set; }
  14. public List<DailyReport> yesterdayHourlyReport { get; set; }
  15. public long totalRevenue { get; set; }
  16. public long newSubs { get; set; }
  17. public long totalSubs { get; set; }
  18. public long avg7TotalRevenue { get; set; }
  19. public long avg7NewSubs { get; set; }
  20. public long avg7TotalSubs { get; set; }
  21. }
  22. }