import { BaseModel } from './BaseModel'; import { JobSection } from './JobSection'; export interface JobType extends BaseModel { name: string; badgesIds: string[]; companyId: string; sections: JobSection[]; }