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.
HMG_QLine/lib/models/kiosk_ticket_model.dart

23 lines
488 B
Dart

class KioskPatientTicket {
String? patientCallNo;
int? projectID;
int? ticketQueueID;
int? result;
KioskPatientTicket({
this.patientCallNo,
this.projectID,
this.ticketQueueID,
this.result,
});
factory KioskPatientTicket.fromJson(Map<String, dynamic> json) {
return KioskPatientTicket(
patientCallNo: json['patientCallNo'],
projectID: json['projectID'],
ticketQueueID: json['ticketQueueID'],
result: json['result'],
);
}
}