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.
11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
|
7 years ago
|
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;
|
||
|
|
}
|