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

19 lines
335 B
C#

using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineListSelectOutput
{
/// <summary>
/// id.
/// </summary>
public string? id { get; set; }
/// <summary>
/// 流程名称.
/// </summary>
public string? fullName { get; set; }
}