class GetPatientProgressNoteResModel { int appointmentNo; int createdBy; String createdByName; String createdOn; String dName; String editedByName; String editedOn; int episodeId; String mName; int patientMRN; String planNote; GetPatientProgressNoteResModel( {this.appointmentNo, this.createdBy, this.createdByName, this.createdOn, this.dName, this.editedByName, this.editedOn, this.episodeId, this.mName, this.patientMRN, this.planNote}); GetPatientProgressNoteResModel.fromJson(Map json) { appointmentNo = json['appointmentNo']; createdBy = json['createdBy']; createdByName = json['createdByName']; createdOn = json['createdOn']; dName = json['dName']; editedByName = json['editedByName']; editedOn = json['editedOn']; episodeId = json['episodeId']; mName = json['mName']; patientMRN = json['patientMRN']; planNote = json['planNote']; } Map toJson() { final Map data = new Map(); data['appointmentNo'] = this.appointmentNo; data['createdBy'] = this.createdBy; data['createdByName'] = this.createdByName; data['createdOn'] = this.createdOn; data['dName'] = this.dName; data['editedByName'] = this.editedByName; data['editedOn'] = this.editedOn; data['episodeId'] = this.episodeId; data['mName'] = this.mName; data['patientMRN'] = this.patientMRN; data['planNote'] = this.planNote; return data; } }