You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm-flutter-app/lib/models/performance.dart

19 lines
540 B
Dart

class GetPerformanceAppraisalList {
String? aPPRAISALSCORE;
int? aPPRAISALYEAR;
GetPerformanceAppraisalList({this.aPPRAISALSCORE, this.aPPRAISALYEAR});
GetPerformanceAppraisalList.fromJson(Map<String, dynamic> json) {
aPPRAISALSCORE = json['APPRAISAL_SCORE'];
aPPRAISALYEAR = json['APPRAISAL_YEAR'];
}
Map<String, dynamic> toJson() {
Map<String, dynamic> data = new Map<String, dynamic>();
data['APPRAISAL_SCORE'] = this.aPPRAISALSCORE;
data['APPRAISAL_YEAR'] = this.aPPRAISALYEAR;
return data;
}
}