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.
32 lines
598 B
Dart
32 lines
598 B
Dart
/*
|
|
*@author: Ibrahim Albitar
|
|
*@Date:27/4/2020
|
|
*@param:
|
|
*@return:
|
|
*@desc:
|
|
*/
|
|
class PharmaciesItemsRequestModel {
|
|
String PHR_itemName;
|
|
int LanguageID;
|
|
String stamp;
|
|
String IPAdress;
|
|
double VersionID;
|
|
String TokenID;
|
|
String SessionID;
|
|
bool IsLoginForDoctorApp;
|
|
bool PatientOutSA;
|
|
int PatientTypeID;
|
|
|
|
PharmaciesItemsRequestModel(
|
|
{this.PHR_itemName,
|
|
this.PatientTypeID,
|
|
this.LanguageID,
|
|
this.stamp,
|
|
this.IPAdress,
|
|
this.VersionID,
|
|
this.TokenID,
|
|
this.SessionID,
|
|
this.IsLoginForDoctorApp,
|
|
this.PatientOutSA});
|
|
}
|