aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/inputs-and-properties.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/models/inputs-and-properties.ts')
-rw-r--r--catalog-ui/src/app/models/inputs-and-properties.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/inputs-and-properties.ts b/catalog-ui/src/app/models/inputs-and-properties.ts
new file mode 100644
index 0000000000..18ff928918
--- /dev/null
+++ b/catalog-ui/src/app/models/inputs-and-properties.ts
@@ -0,0 +1,22 @@
+/**
+ * Created by obarda on 1/11/2017.
+ */
+'use strict';
+import {PropertyModel} from "./properties";
+import {InputModel} from "./inputs";
+
+export class InputsAndProperties {
+
+ inputs:Array<InputModel>;
+ properties:Array<PropertyModel>;
+
+
+ constructor(inputs?:Array<InputModel>, properties?:Array<PropertyModel>) {
+ if (inputs && inputs.length > 0) {
+ this.inputs = inputs;
+ }
+ if (properties && properties.length > 0) {
+ this.properties = properties;
+ }
+ }
+}