using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using wispro.sp.entity.workflowDefine; namespace wispro.sp.entity.workflowInstance { public class StepInstance { public int Id { get; set; } public Step Step { get; set; } public int stepId { get; set; } public WorkflowInstance workflowInstance { get; set; } public int workflowInstanceId { get; set; } public int? PreviousStepId { get; set; } } }