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.
23 lines
488 B
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'],
|
|
);
|
|
}
|
|
}
|