aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/model/workflow/plan-model.ts
diff options
context:
space:
mode:
authorLvbo163 <lv.bo163@zte.com.cn>2018-01-09 16:15:28 +0800
committerLvbo163 <lv.bo163@zte.com.cn>2018-01-09 17:05:14 +0800
commit2356116cdf19843ba11bc0e781577b5a539ba712 (patch)
treea786eb61b2b456dd1ef3e0ebdd4a50166ca04a44 /sdc-workflow-designer-ui/src/app/model/workflow/plan-model.ts
parentc4e228b35d31f095f82eef54e8391762d59a3d3d (diff)
remove plan name from plan definition
change workflow structure Issue-ID: SDC-889 Change-Id: I8ddb053361960d741920c7fe6fff628eb29fbf0c Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/model/workflow/plan-model.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/model/workflow/plan-model.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/sdc-workflow-designer-ui/src/app/model/workflow/plan-model.ts b/sdc-workflow-designer-ui/src/app/model/workflow/plan-model.ts
new file mode 100644
index 00000000..764bae71
--- /dev/null
+++ b/sdc-workflow-designer-ui/src/app/model/workflow/plan-model.ts
@@ -0,0 +1,23 @@
+/**
+ * Copyright (c) 2017 ZTE Corporation.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and the Apache License 2.0 which both accompany this distribution,
+ * and are available at http://www.eclipse.org/legal/epl-v10.html
+ * and http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Contributors:
+ * ZTE - initial API and implementation and/or initial documentation
+ */
+
+import { Injectable } from '@angular/core';
+import { WorkflowNode } from "./workflow-node";
+import { Configs } from "./configs";
+
+/**
+ * PlanModel
+ */
+export class PlanModel {
+ public nodes: WorkflowNode[] = [];
+ public configs: any = {};
+}