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.
 
 
 
 
 
 

26 lines
683 B

  1. using System.Collections.Generic;
  2. namespace Learun.Application.WorkFlow
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创建人:陈彬彬
  8. /// 日 期:2017.04.17
  9. /// 描 述:工作流模板模型
  10. /// </summary>
  11. public class WfSchemeModel
  12. {
  13. #region 原始属性
  14. /// <summary>
  15. /// 节点数据
  16. /// </summary>
  17. public List<WfNodeInfo> nodes { get; set; }
  18. /// <summary>
  19. /// 线条数据
  20. /// </summary>
  21. public List<WfLineInfo> lines { get; set; }
  22. #endregion
  23. }
  24. }