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