Fix bugs in attribute outputs page
[sdc.git] / catalog-ui / src / app / models / radio-button.ts
1 /**
2  * Created by rc2122 on 9/5/2017.
3  */
4 export class RadioButtonModel{
5     key: string;
6     value: any;
7     constructor(key: string, value: any){
8         this.key = key;
9         this.value = value;
10     }
11 }