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.
20 lines
521 B
TypeScript
20 lines
521 B
TypeScript
|
7 years ago
|
import { Request } from './request';
|
||
|
|
|
||
|
|
export class EmailRequest extends Request {
|
||
|
|
DoctorName: string;
|
||
|
|
ProjectName: string;
|
||
|
|
ClinicName: string; // personal information
|
||
|
|
ProjectID: number;
|
||
|
|
DateofBirth: string; // json date personal information
|
||
|
|
PatientIditificationNum: string;
|
||
|
|
PatientMobileNumber: string;
|
||
|
|
PatientName: string;
|
||
|
|
PatientOutSA: number;
|
||
|
|
PatientTypeID: number;
|
||
|
|
To: string; // user email
|
||
|
|
SetupID: string;
|
||
|
|
OrderDate: string; // iso date
|
||
|
|
InvoiceNo: string;
|
||
|
|
|
||
|
|
}
|