export class DrillDownModel { id: string; name: string; fixedValueData: any; valueOfColumnData: any; valueOfFormFieldData: any; selected: string; radioButtonValue: string; columnID: string; constructor(id: string, name: string, radioButtonValue: string) { this.id = id; this.name = name; this.selected = ''; this.fixedValueData = ''; this.valueOfColumnData = ''; this.valueOfFormFieldData = ''; this.radioButtonValue = radioButtonValue; this.columnID = ''; } }