using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Dto.FlowComment; [SuppressSniffer] public class FlowCommentCrInput { /// /// 附件. /// public string? file { get; set; } /// /// 图片. /// public string? image { get; set; } /// /// 任务id. /// public string? taskId { get; set; } /// /// 评论内容. /// public string? text { get; set; } }