From 58663b4b2f656d7af9106a178e1e91e38b4e4f72 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Thu, 25 Aug 2022 20:00:22 +0200 Subject: [PATCH] Update WorkflowBuilder.cs --- src/modules/Elsa.Workflows.Core/Builders/WorkflowBuilder.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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();