Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Dto/FlowEngine/FlowEngineImportOutput.cs
2023-03-13 15:00:34 +08:00

19 lines
463 B
C#

using JNPF.DependencyInjection;
using JNPF.WorkFlow.Entitys.Entity;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineImportOutput
{
/// <summary>
/// 流程实例.
/// </summary>
public FlowEngineEntity flowEngine { get; set; }
/// <summary>
/// 流程可见范围.
/// </summary>
public List<FlowEngineVisibleEntity> visibleList { get; set; } = new List<FlowEngineVisibleEntity>();
}