QueryNextStepOptionDto.cs 378 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Hotline.Share.Dtos.FlowEngine
  7. {
  8. public class QueryNextStepOptionDto
  9. {
  10. public string WorkflowId { get; set; }
  11. /// <summary>
  12. /// define.stepCode
  13. /// </summary>
  14. public string Code { get; set; }
  15. }
  16. }