forked from softboy99/fles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.ts
More file actions
30 lines (29 loc) · 820 Bytes
/
User.ts
File metadata and controls
30 lines (29 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import {AccessToken} from './AccessToken'
export class User {
id!: number;
userName: string;
password: string;
personName!: string;
email!: string;
cellPhone!: string;
lastPasswordResetDate!: string;
signature: any;
backupSignature: any;
isTesting!: boolean;
isReporting!: boolean;
isCS!: boolean;
isSaler!: boolean;
isDeveloper!: boolean;
isAdministrator!: boolean;
isDCSAdmin!: boolean;
positionID!: boolean;
labID!: number;
nativeLanguageID!: number;
secondaryLanguageID!: number;
accessToken!: AccessToken;
avatarUrl!: 'https://js.devexpress.com/Demos/WidgetsGallery/JSDemos/images/employees/06.png';
constructor(userName:string,password:string){
this.userName = userName;
this.password = password;
}
}