From 0e9e7cc667e8e4925e45cfdfbbc10ef1346ae5a9 Mon Sep 17 00:00:00 2001 From: ShaabanEltanany Date: Tue, 6 Oct 2020 16:09:16 +0200 Subject: adding action attributes sidebard Issue-ID: CCSDK-2874 Signed-off-by: ShaabanEltanany Change-Id: I962f98e9caaa8db4753d5266b8084eae7cb0961d --- .../designer/action-attributes/models/InputActionAttribute.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models/InputActionAttribute.ts (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/designer/action-attributes/models') 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 { + +} -- cgit 1.2.3-korg