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

18 lines
332 B
C#

using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineFieldOutput
{
/// <summary>
/// 字段.
/// </summary>
public string vmodel { get; set; }
/// <summary>
/// 字段说明.
/// </summary>
public string label { get; set; }
}