blob: be5ad92fb006a12a3c32b2a686d9584e5488631a [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001/**
2 * Created by rcohen on 10/31/2016.
3 */
4'use strict';
5
6export class HeatParameterModel {
7 uniqueId:string;
8 name:string;
9 type:string;
10 description:string;
11 currentValue:string;
12 defaultValue:string;
13
14 constructor(parameter?:HeatParameterModel) {
15 }
16
17}
18