fix: issue fixed for triggering correct workflow definition versionId (#5979)
Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com>
This commit is contained in:
parent
108e928335
commit
59164bbcf5
|
|
@ -8,11 +8,11 @@ namespace Elsa.Workflows.Runtime.Commands;
|
|||
/// </summary>
|
||||
public class DispatchWorkflowDefinitionCommand(string definitionVersionId) : ICommand<Unit>
|
||||
{
|
||||
public string DefinitionVersionId { get; init; }
|
||||
public string DefinitionVersionId { get; init; } = definitionVersionId;
|
||||
public string? ParentWorkflowInstanceId { get; init; }
|
||||
public IDictionary<string, object>? Input { get; set; }
|
||||
public IDictionary<string, object>? Properties { get; set; }
|
||||
public string? CorrelationId { get; set; }
|
||||
public string? InstanceId { get; set; }
|
||||
public string? TriggerActivityId { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue