src/app/_models/User.ts
| age |
age: |
Type : number
|
| city |
city: |
Type : string
|
| country |
country: |
Type : string
|
| created |
created: |
Type : Date
|
| education |
education: |
Type : Education[]
|
| firstname |
firstname: |
Type : string
|
| gender |
gender: |
Type : string
|
| id |
id: |
Type : number
|
| interests |
interests: |
Type : string
|
| introduction |
introduction: |
Type : string
|
| lastActive |
lastActive: |
Type : Date
|
| lastname |
lastname: |
Type : string
|
| photos |
photos: |
Type : Photo[]
|
| photoUrl |
photoUrl: |
Type : string
|
| project |
project: |
Type : Project[]
|
| skill |
skill: |
Type : Skill[]
|
| username |
username: |
Type : string
|
| workExperience |
workExperience: |
Type : WorkExperience[]
|
import { Photo } from "./Photo";
import { Education } from "./Education";
import { Project } from "./Project";
import { Skill } from "./Skill";
import { WorkExperience } from "./WorkExperience";
export interface User {
id: number;
firstname: string;
lastname: string;
username: string;
gender: string;
age: number;
created: Date;
lastActive: Date;
photoUrl: string;
city: string;
country: string;
introduction?: string;
interests?: string;
education?: Education[];
project?: Project[];
skill?: Skill[];
workExperience?: WorkExperience[];
photos?: Photo[];
}