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.
19 lines
555 B
TypeScript
19 lines
555 B
TypeScript
|
7 years ago
|
export class Request {
|
||
|
|
public ClinicID: number;
|
||
|
|
public PatientOutSA: number;
|
||
|
|
public PatientID: number;
|
||
|
|
public ProjectID: number;
|
||
|
|
public LanguageID: number;
|
||
|
|
public IPAdress: string;
|
||
|
|
public VersionID: number;
|
||
|
|
public Channel: number;
|
||
|
|
public PatientTypeID: number;
|
||
|
|
public isDentalAllowedBackend: boolean;
|
||
|
|
public IsIrisPrescription: boolean;
|
||
|
|
public TokenID: string;
|
||
|
|
public SessionID: string;
|
||
|
|
public PatientIdentificationID: string;
|
||
|
|
public PatientMobileNumber: string;
|
||
|
|
public BookedBy?: number;
|
||
|
|
}
|