13 lines
256 B
C#
13 lines
256 B
C#
using JNPF.DependencyInjection;
|
|
|
|
namespace JNPF.WorkFlow.Entitys.Dto.FlowLaunch;
|
|
|
|
[SuppressSniffer]
|
|
public class FlowLaunchActionWithdrawInput
|
|
{
|
|
/// <summary>
|
|
/// 撤回意见.
|
|
/// </summary>
|
|
public string? handleOpinion { get; set; }
|
|
}
|