| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace SuperCms.Models
- {
- public class HomeViewModel
- {
- public ConnDatas connDatas { get; set; }
- public ConnDatas connDatasNow { get; set; }
- public ConnDatas connDatasBefore { get; set; }
- public List<DistributedData> distributedDatas { get; set; }
- public List<DateTime> listDate { get; set; }
- public List<DistributedByTime> distributedByTimes { get; set; }
- public String page { get; set; }
- public String totalPage { get; set; }
- public ConnTelcos telcos { get; set; }
- public ConnCompanies companies { get; set; }
- public ConnConfigs services { get; set; }
- public ConnConfigs totalServices { get; set; }
- }
- public class DistributedData
- {
- public ConnConfig service { get; set; }
- public ConnDatas connDatas { get; set; }
- }
- public class DistributedByTime
- {
- public DateTime time { get; set; }
- public ConnConfig service { get; set; }
- public ConnDatas connDatas { get; set; }
- }
- public class DistributedByTelcoAndCompany
- {
- public ConnTelco telco { get; set; }
- public ConnCompanies companies { get; set; }
- public ConnConfigs services { get; set; }
- }
- }
|