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
586 B
TypeScript
20 lines
586 B
TypeScript
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 MobileType: string;
|
|
public PatientIdentificationID: string;
|
|
public PatientMobileNumber: string;
|
|
public BookedBy?: number;
|
|
}
|