using System.Collections.Generic; namespace VberZero.Workflow.DesignInfo; public class WorkflowStepBodyInput { public string Name { get; set; } public Dictionary Inputs { get; set; } = new(); }