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.
15 lines
431 B
TypeScript
15 lines
431 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;
|
|
|
|
P_USER_NAME:string;
|
|
P_LANGUAGE: string;
|
|
P_PASSWORD: string;
|
|
}
|