12345678910111213141516171819202122 |
- using Hotline.Share.Dtos.FlowEngine;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Hotline.Share.Dtos.Order.Migration
- {
- public class GetOrderMigrationDto
- {
- public string StepId { get; set; }
- public string OrderId { get; set; }
-
- public IReadOnlyList<OrderMigrationHandler> Handlers { get; set; }
- }
- public class OrderMigrationHandler : FlowStepHandler
- {
- public string RoleNames { get; set; }
- }
- }
|