DelayWithStepId.cs 205 B

12345678
  1. namespace Hotline.Share.Dtos.Order.OrderDelay;
  2. public class DelayWithStepId
  3. {
  4. public string DelayId { get; set; }
  5. public string WorkflowId { get; set; }
  6. public string StepId { get; set; }
  7. }