using System; using VberZero.Workflow.DesignInfo; namespace VberZero.Workflow.StepBodies { public class VberWorkflowStepBody { public string Name { get; set; } public string DisplayName { get; set; } public WorkflowParamDictionary Inputs { get; set; } = new WorkflowParamDictionary(); public Type StepBodyType { get; set; } } }