26 lines
646 B
C#
26 lines
646 B
C#
using System.Collections.Generic;
|
||
|
||
namespace Learun.Application.WorkFlow
|
||
{
|
||
/// <summary>
|
||
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
|
||
/// Copyright (c) 2013-2018 Hexagon PPM
|
||
/// 创建人:研发部
|
||
/// 日 期:2017.04.17
|
||
/// 描 述:工作流模板模型
|
||
/// </summary>
|
||
public class WfSchemeModel
|
||
{
|
||
#region 原始属性
|
||
/// <summary>
|
||
/// 节点数据
|
||
/// </summary>
|
||
public List<WfNodeInfo> nodes { get; set; }
|
||
/// <summary>
|
||
/// 线条数据
|
||
/// </summary>
|
||
public List<WfLineInfo> lines { get; set; }
|
||
#endregion
|
||
}
|
||
}
|