aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
diff options
context:
space:
mode:
authorKAPIL SINGAL <ks220y@att.com>2020-10-06 16:11:21 +0000
committerGerrit Code Review <gerrit@onap.org>2020-10-06 16:11:21 +0000
commitc2acf3324a370096529421b5e7bc98cadcc29614 (patch)
tree568ba84bdf14301fbe3298f3b8bc03f082cebf18 /cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
parent562e6aab5d38a7df4e8ae802c7281ecab69eb9b4 (diff)
parent0e9e7cc667e8e4925e45cfdfbbc10ef1346ae5a9 (diff)
Merge "adding action attributes sidebard"
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
new file mode 100644
index 000000000..5d2c1116e
--- /dev/null
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts
@@ -0,0 +1,10 @@
+export class InputActionAttribute {
+ name: string;
+ description: string;
+ type: string;
+ required: boolean;
+}
+
+export class OutputActionAttribute extends InputActionAttribute {
+
+}