using System.Collections.Generic; namespace learun.workflow { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.11.22 /// 描 述:工作流模板模型 /// public class NWFScheme { /// /// 节点数据 /// public List nodes { get; set; } /// /// 线条数据 /// public List lines { get; set; } /// /// 流程撤销作废的时候执行的方法 /// public NWFCloseDo closeDo { get; set; } } }