cv-site/src/lib/model/job.ts

31 lines
575 B
TypeScript

/* tslint:disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface Job {
id?: string;
year: {
start: string;
end: string;
};
title: {
en: string;
it: string;
};
content: {
en: string;
it: string;
};
collaborators: {
name: string;
surname: string;
ref: string;
}[];
languages: string[];
tecnologies: string[];
images: string[];
}