18 lines
439 B
TypeScript
18 lines
439 B
TypeScript
import { Status } from '../../interfaces/Status.interface';
|
|
import { Profile } from '../profiles/Profile.interface';
|
|
import { Skill } from "../skills/Skill.interface";
|
|
|
|
export interface Experience {
|
|
id: string;
|
|
profileId: string;
|
|
companyName: string;
|
|
companyGenericName: string;
|
|
location: string;
|
|
title: string;
|
|
startDate: Date;
|
|
endDate?: Date;
|
|
summary?: string;
|
|
skills: Skill[];
|
|
profile: Profile;
|
|
status: Status;
|
|
} |