1234567891011121314151617181920212223242526 |
- import { IUser } from 'app/core/user/user.model';
- import { ICohort } from 'app/shared/model//cohort.model';
- import { IEmployer } from 'app/shared/model//employer.model';
-
- export interface IUserProfile {
- id?: number;
- firstName?: string;
- lastName?: string;
- userStack?: string;
- user?: IUser;
- cohort?: ICohort;
- employer?: IEmployer;
- }
-
- export class UserProfile implements IUserProfile {
- constructor(
- public id?: number,
- public firstName?: string,
- public lastName?: string,
- public userStack?: string,
- public user?: IUser,
- public cohort?: ICohort,
- public employer?: IEmployer
- ) {}
- }
|