blob: 18ff928918791679cbb3466bf31325201a2a001f [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001/**
2 * Created by obarda on 1/11/2017.
3 */
4'use strict';
5import {PropertyModel} from "./properties";
6import {InputModel} from "./inputs";
7
8export class InputsAndProperties {
9
10 inputs:Array<InputModel>;
11 properties:Array<PropertyModel>;
12
13
14 constructor(inputs?:Array<InputModel>, properties?:Array<PropertyModel>) {
15 if (inputs && inputs.length > 0) {
16 this.inputs = inputs;
17 }
18 if (properties && properties.length > 0) {
19 this.properties = properties;
20 }
21 }
22}