user-profile.model.ts 669B

1234567891011121314151617181920212223242526
  1. import { IUser } from 'app/core/user/user.model';
  2. import { ICohort } from 'app/shared/model//cohort.model';
  3. import { IEmployer } from 'app/shared/model//employer.model';
  4. export interface IUserProfile {
  5. id?: number;
  6. firstName?: string;
  7. lastName?: string;
  8. userStack?: string;
  9. user?: IUser;
  10. cohort?: ICohort;
  11. employer?: IEmployer;
  12. }
  13. export class UserProfile implements IUserProfile {
  14. constructor(
  15. public id?: number,
  16. public firstName?: string,
  17. public lastName?: string,
  18. public userStack?: string,
  19. public user?: IUser,
  20. public cohort?: ICohort,
  21. public employer?: IEmployer
  22. ) {}
  23. }