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.
mohemmionic5/Mohem/src/app/hmg-common/services/authentication/models/check-user-auth.request.ts

11 lines
340 B
TypeScript

import { Request } from '../../models/request';
export class CheckUserAuthenticationRequest extends Request {
PatientIdentificationID: string; // id
PatientMobileNumber: string; // phone number
ZipCode: string;
SearchType: number; // 1 for id , 2 for file no
isRegister: boolean; // false
LogInTokenID?: string;
}