EndWorkflowDto.cs 300 B

1234567891011121314
  1. namespace Hotline.Share.Dtos.FlowEngine;
  2. public class EndWorkflowDto
  3. {
  4. /// <summary>
  5. /// 办理意见
  6. /// </summary>
  7. public string Opinion { get; set; } = string.Empty;
  8. /// <summary>
  9. /// 附件
  10. /// </summary>
  11. public List<string> Additions { get; set; } = new();
  12. }