| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace YTSoft.BaseCallCenter.MVCWeb.Models
- {
- public class MainChartModel
- {
- public string format
- {
- get;
- set;
- }
- public string bottom
- {
- get;
- set;
- }
-
- public string datas
- {
- get;
- set;
- }
-
- }
- }
|