using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.DB.Models; namespace WIDESEAWCS_Model.Models.TaskFlowConfig { public class Dt_TaskFlowStep : BaseEntity { public int StepId { get; set; } public int TaskFlowId { get; set; } public int NextStepId { get; set; } public int SequenceOrder { get; set; } } }