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.
26 lines
730 B
Dart
26 lines
730 B
Dart
class GetGetProgressNoteResModel {
|
|
int appointmentNo;
|
|
int episodeId;
|
|
int patientMRN;
|
|
String planNote;
|
|
|
|
GetGetProgressNoteResModel(
|
|
{this.appointmentNo, this.episodeId, this.patientMRN, this.planNote});
|
|
|
|
GetGetProgressNoteResModel.fromJson(Map<String, dynamic> json) {
|
|
appointmentNo = json['appointmentNo'];
|
|
episodeId = json['episodeId'];
|
|
patientMRN = json['patientMRN'];
|
|
planNote = json['planNote'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['appointmentNo'] = this.appointmentNo;
|
|
data['episodeId'] = this.episodeId;
|
|
data['patientMRN'] = this.patientMRN;
|
|
data['planNote'] = this.planNote;
|
|
return data;
|
|
}
|
|
}
|