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.
18 lines
463 B
TypeScript
18 lines
463 B
TypeScript
|
7 years ago
|
import { PatientUserModel } from './PatientUserModel';
|
||
|
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
|
||
|
|
export class AuthenticatedUser extends PatientUserModel {
|
||
|
|
PatientName: string;
|
||
|
|
TokenID: string;
|
||
|
|
MobileNo: string;
|
||
|
|
Email: string;
|
||
|
|
PatientOutSA: boolean;
|
||
|
|
PatientTypeID: number;
|
||
|
|
agreed: boolean;
|
||
|
|
IdentificationNo: string;
|
||
|
|
deviceToken: string;
|
||
|
|
biometricEnabled: boolean;
|
||
|
|
ProjectID: number;
|
||
|
|
familyMember: boolean;
|
||
|
|
}
|