aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/model/workflow/workflow-node.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/model/workflow/workflow-node.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/model/workflow/workflow-node.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/sdc-workflow-designer-ui/src/app/model/workflow/workflow-node.ts b/sdc-workflow-designer-ui/src/app/model/workflow/workflow-node.ts
index 628148a4..f278d188 100644
--- a/sdc-workflow-designer-ui/src/app/model/workflow/workflow-node.ts
+++ b/sdc-workflow-designer-ui/src/app/model/workflow/workflow-node.ts
@@ -17,7 +17,9 @@ export interface WorkflowNode extends WorkflowElement {
connection: SequenceFlow[];
id: string;
name: string;
+ icon?: string;
parentId: string;
position: Position;
type: string;
+ typeId?: string;
}