File

src/app/_models/User.ts

Properties

age
age: number
Type : number
city
city: string
Type : string
country
country: string
Type : string
created
created: Date
Type : Date
education
education: Education[]
Type : Education[]
firstname
firstname: string
Type : string
gender
gender: string
Type : string
id
id: number
Type : number
interests
interests: string
Type : string
introduction
introduction: string
Type : string
lastActive
lastActive: Date
Type : Date
lastname
lastname: string
Type : string
photos
photos: Photo[]
Type : Photo[]
photoUrl
photoUrl: string
Type : string
project
project: Project[]
Type : Project[]
skill
skill: Skill[]
Type : Skill[]
username
username: string
Type : string
workExperience
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[];
}

results matching ""

    No results matching ""