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/my_requests/get_concurrent_programs_mod...

25 lines
862 B
Dart

class GetConcurrentProgramsModel {
int? cONCURRENTPROGRAMID;
String? cONCURRENTPROGRAMNAME;
String? uSERCONCURRENTPROGRAMNAME;
GetConcurrentProgramsModel(
{this.cONCURRENTPROGRAMID,
this.cONCURRENTPROGRAMNAME,
this.uSERCONCURRENTPROGRAMNAME});
GetConcurrentProgramsModel.fromJson(Map<String, dynamic> json) {
cONCURRENTPROGRAMID = json['CONCURRENT_PROGRAM_ID'];
cONCURRENTPROGRAMNAME = json['CONCURRENT_PROGRAM_NAME'];
uSERCONCURRENTPROGRAMNAME = json['USER_CONCURRENT_PROGRAM_NAME'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['CONCURRENT_PROGRAM_ID'] = this.cONCURRENTPROGRAMID;
data['CONCURRENT_PROGRAM_NAME'] = this.cONCURRENTPROGRAMNAME;
data['USER_CONCURRENT_PROGRAM_NAME'] = this.uSERCONCURRENTPROGRAMNAME;
return data;
}
}