src/app/_models/WorkExperience.ts
company |
company: |
Type : string
|
dateAdded |
dateAdded: |
Type : Date
|
description |
description: |
Type : string
|
endMonth |
endMonth: |
Type : Date
|
endYear |
endYear: |
Type : Date
|
id |
id: |
Type : number
|
isCurrentlyWorking |
isCurrentlyWorking: |
Type : boolean
|
location |
location: |
Type : string
|
startMonth |
startMonth: |
Type : Date
|
startYear |
startYear: |
Type : Date
|
title |
title: |
Type : string
|
export interface WorkExperience {
id: number;
title: string;
company: string;
location: string;
startMonth: Date;
startYear: Date;
isCurrentlyWorking: boolean;
endMonth: Date;
endYear: Date;
description: string;
dateAdded: Date;
}