Logo white

ADAM / AIAHTML5

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues
  • Merge Requests 14
  • Labels
  • Wiki
  • Snippets
  • AIAHTML5
  • AIAHTML5.ADMIN.Web
  • src
  • app
  • components
  • UserEntity
  • datamodel.ts
  • Testing
    144842fc
    Gagandeep authored
    2018-01-17 13:20:48 +0530  
    Browse Code ยป
datamodel.ts 411 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
export class User {
  LoginId: string;
  Password: string;
  Id: number;
  FirstName: string;
  LastName: string;
  EmailId: string;
  NewLoginId: string;
  ConfirmPassword: string;
  AccountNumberId: number;
  UserTypeId: number;
  ProductEditionId:number
}
export class DiscountCode {
  Id: number;
  DiscountCode: string;
  StartDate: Date;
  EndDate: Date;
  Percentage: DoubleRange;
  IsActive: boolean;
}