地铁二期项目正式开始

MainChartModel.cs 448B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace YTSoft.BaseCallCenter.MVCWeb.Models
  6. {
  7. public class MainChartModel
  8. {
  9. public string format
  10. {
  11. get;
  12. set;
  13. }
  14. public string bottom
  15. {
  16. get;
  17. set;
  18. }
  19. public string datas
  20. {
  21. get;
  22. set;
  23. }
  24. }
  25. }