Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. export class User {
  2. id: number;
  3. table: string;
  4. token: string;
  5. email: string;
  6. first_name: string;
  7. last_name: string;
  8. phone_1?: string;
  9. phone_2?: string;
  10. oldPassword?: string;
  11. password?: string;
  12.  
  13. // address?: string;
  14. // zipcode?: number;
  15. // city?: string;
  16. }
  17.  
  18. // export class UserUpdate {
  19. // id: number;
  20. // email: string;
  21. // first_name: string;
  22. // last_name: string;
  23. // phone_1?: string;
  24. // phone_2?: string;
  25. // }
  26.  
  27.  
  28. export class UserUpdatePassword {
  29. oldPassword?: string;
  30. password?: string;
  31.  
  32. }
  33.  
  34. export class UserLogin {
  35. public username: string;
  36. public password: string;
  37. }
  38.  
  39. export class UserResetPassword {
  40. public email: string;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement