blob: e907b26bce94840ddbc39e29c57445a94cee7e55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* Created by rc2122 on 9/5/2017.
*/
export class RadioButtonModel{
key: string;
value: any;
constructor(key: string, value: any){
this.key = key;
this.value = value;
}
}
|