14 lines
280 B
C#
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; }
|
|
}
|
|
}
|