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 Handlers { get; set; } } public class OrderMigrationHandler : FlowStepHandler { public string RoleNames { get; set; } } }