18 lines
332 B
C#
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; }
|
|
}
|