namespace VberZero.AppService.Workflows.Dto; public class StartWorkflowInput { public string Id { get; set; } public int Version { get; set; } public Dictionary<string, object> Inputs { get; set; } = new Dictionary<string, object>(); }