blob: e907b26bce94840ddbc39e29c57445a94cee7e55 [file] [log] [blame]
Tal Gitelman51d50f02017-12-10 18:55:03 +02001/**
2 * Created by rc2122 on 9/5/2017.
3 */
4export class RadioButtonModel{
5 key: string;
6 value: any;
7 constructor(key: string, value: any){
8 this.key = key;
9 this.value = value;
10 }
11}