Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Dto/FlowComment/FlowCommentUpInput.cs
2023-03-13 15:00:34 +08:00

14 lines
280 B
C#

using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowComment
{
[SuppressSniffer]
public class FlowCommentUpInput : FlowCommentCrInput
{
/// <summary>
/// id.
/// </summary>
public string? id { get; set; }
}
}