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.
21 lines
594 B
TypeScript
21 lines
594 B
TypeScript
// import { Request } from './request';
|
|
import { Request } from 'src/app/hmg-common/services/models/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;
|
|
|
|
}
|