datamodel.ts
800 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
export class User {
LoginId: string;
Password: string;
Id: number;
FirstName: string;
LastName: string;
EmailId: string;
NewLoginId: string;
ConfirmPassword: string;
AccountNumberId: number;
UserTypeId: number;
UserId: number;
ProductEditionId: number;
AccountNumber: string;
UserTypeTitle: string;
AccountTypeTitle: string;
CreationDate: Date;
ModifiedDate: Date;
Createdby: string;
Modifiedby: string;
DeactivationDate: Date;
UserStatus:string
}
export class DiscountCode {
Id: number;
DiscountCode: string;
StartDate: Date;
EndDate: Date;
Percentage: DoubleRange;
IsActive: boolean;
}
export class SubscriptionPriceModel {
Id: number;
Title: string;
Price: DoubleRange;
Duration: number;
EditionId: number;
IsActive: boolean;
}