19 lines
335 B
C#
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; }
|
|
|
|
}
|