blob: e907b26bce94840ddbc39e29c57445a94cee7e55 [file] [log] [blame]
/**
* 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;
}
}