Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame^] | 1 | /** |
2 | * Created by rcohen on 10/31/2016. | ||||
3 | */ | ||||
4 | 'use strict'; | ||||
5 | |||||
6 | export 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 |