diff --git a/src/modules/Elsa.Workflows.Core/Builders/WorkflowBuilder.cs b/src/modules/Elsa.Workflows.Core/Builders/WorkflowBuilder.cs index cd3308d6a..c6c783a62 100644 --- a/src/modules/Elsa.Workflows.Core/Builders/WorkflowBuilder.cs +++ b/src/modules/Elsa.Workflows.Core/Builders/WorkflowBuilder.cs @@ -13,10 +13,10 @@ public class WorkflowBuilder : IWorkflowBuilder _identityGraphService = identityGraphService; } - public string? Id { get; private set; } - public string? DefinitionId { get; private set; } + public string? Id { get; set; } + public string? DefinitionId { get; set; } public int Version { get; private set; } = 1; - public IActivity? Root { get; private set; } + public IActivity? Root { get; set; } public ICollection Variables { get; set; } = new List(); public IDictionary Metadata { get; set; } = new Dictionary(); public IDictionary ApplicationProperties { get; set; } = new Dictionary();