24 lines
602 B
C#
24 lines
602 B
C#
using JNPF.DependencyInjection;
|
|
using JNPF.WorkFlow.Entitys.Entity;
|
|
|
|
namespace JNPF.WorkFlow.Entitys.Dto.FlowTemplate;
|
|
|
|
[SuppressSniffer]
|
|
public class FlowTemplateImportOutput
|
|
{
|
|
/// <summary>
|
|
/// 流程实例.
|
|
/// </summary>
|
|
public FlowTemplateEntity flowTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 流程实例.
|
|
/// </summary>
|
|
public List<FlowTemplateJsonEntity> flowTemplateJson { get; set; }
|
|
|
|
/// <summary>
|
|
/// 流程可见范围.
|
|
/// </summary>
|
|
public List<FlowEngineVisibleEntity> visibleList { get; set; } = new List<FlowEngineVisibleEntity>();
|
|
}
|