datamodel.ts
309 Bytes
export class User {
LoginId: string;
Password: string;
Id: number;
FirstName: string;
LastName: string;
EmailId: string;
NewLoginId: string;
}
export class DiscountCode {
Id: number;
DiscountCode: string;
StartDate: Date;
EndDate: Date;
Percentage: DoubleRange;
IsActive: boolean;
}