using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Hotline.Share.Enums.FlowEngine; using XF.Utility.EnumExtensions; namespace Hotline.Share.Dtos.FlowEngine { /// /// 配置好的下一节点 /// public class DefinedStepDto { public string Id { get; set; } public IReadOnlyList Steps { get; set; } public DateTime ExpiredTime { get; set; } public IReadOnlyList Components { get; set; } public IEnumerable> CommunicationModeOptions => EnumExts.GetDescriptions(); } }