using JNPF.DependencyInjection;
using JNPF.WorkFlow.Entitys.Entity;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineImportInput
{
///
/// 导入流程.
///
public FlowEngineEntity? flowEngine { get; set; }
///
/// 导入流程权限.
///
public List visibleList { get; set; } = new List();
}