using System.Collections.Generic; namespace Learun.Application.WorkFlow { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.04.17 /// 描 述:工作流模板模型 /// public class WfSchemeModel { #region 原始属性 /// /// 节点数据 /// public List nodes { get; set; } /// /// 线条数据 /// public List lines { get; set; } #endregion } }