13 lines
243 B
C#
13 lines
243 B
C#
using JNPF.DependencyInjection;
|
|
|
|
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
|
|
|
|
[SuppressSniffer]
|
|
public class FlowEngineUpInput : FlowEngineCrInput
|
|
{
|
|
/// <summary>
|
|
/// id.
|
|
/// </summary>
|
|
public string? id { get; set; }
|
|
}
|