终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
868 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Collections.Concurrent;
  7. using System.Runtime.Serialization;
  8. namespace BPASmart.Model
  9. {
  10. public class ProjectModel
  11. {
  12. /// <summary>
  13. /// 项目名称
  14. /// </summary>
  15. public string ProjectName { get; set; }
  16. /// <summary>
  17. /// 项目路径
  18. /// </summary>
  19. public string ProjectPath { get; set; }
  20. /// <summary>
  21. /// 页面集合
  22. /// key 是页面名称
  23. /// value 是页面路径
  24. /// </summary>
  25. public Dictionary<string, string> Pages { get; set; } = new Dictionary<string, string>();
  26. /// <summary>
  27. /// 变量表配置路径
  28. /// </summary>
  29. public string VariableTabPath { get; set; }
  30. }
  31. }