datamodel.ts
909 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
31
32
33
34
35
36
37
38
39
40
41
42
43
export class User {
LoginId: string;
Password: string;
Id: number;
FirstName: string;
LastName: string;
EmailId: string;
}
//export class User {
// userId: number;
// firstName: string;
// lastName: string;
// emailId: string;
// loginId: string;
// Password: string;
// securityQuestiuonId: number;
// securityAnswer: string;
// creatorId: number;
// creationDate: Date;
// deactivationDate: Date;
// modifierId: number;
// modifiedDate: Date;
// userTypeId: number;
// isActive: boolean;
//}
export interface IUser {
userId: number;
firstName: string;
lastName: string;
emailId: string;
loginId: string;
password: string;
securityQuestiuonId: number;
securityAnswer: string;
creatorId: number;
creationDate: Date;
deactivationDate: Date;
modifierId: number;
modifiedDate: Date;
userTypeId: number;
isActive: boolean;
}