Files
2023-03-13 15:00:34 +08:00

16 lines
323 B
C#

using JNPF.WorkFlow.Entitys.Dto.FlowEngine;
namespace JNPF.WorkFlow.Interfaces.Service;
/// <summary>
/// 流程设计.
/// </summary>
public interface IFlowEngineService
{
/// <summary>
/// 发起列表.
/// </summary>
/// <returns></returns>
Task<List<FlowEngineListOutput>> GetFlowFormList();
}