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.
doctor_app_flutter/lib/models/patient_model.dart

45 lines
891 B
Dart

class PatientModel {
int ProjectID;
int ClinicID;
int DoctorID;
String FirstName;
String MiddleName;
String LastName;
String PatientMobileNumber;
String PatientIdentificationID;
int PatientID;
String From;
String To;
int LanguageID;
String stamp;
String IPAdress;
double VersionID;
int Channel;
String TokenID;
String SessionID;
bool IsLoginForDoctorApp;
bool PatientOutSA;
PatientModel(
{this.ProjectID,
this.ClinicID,
this.DoctorID,
this.FirstName,
this.MiddleName,
this.LastName,
this.PatientMobileNumber,
this.PatientIdentificationID,
this.PatientID,
this.From,
this.To,
this.LanguageID,
this.stamp,
this.IPAdress,
this.VersionID,
this.Channel,
this.TokenID,
this.SessionID,
this.IsLoginForDoctorApp,
this.PatientOutSA});
}