import { BaseModel } from './BaseModel'; import { Certification } from './Certification'; export interface CertificationGroup extends BaseModel { name: string; companyId: string; certifications: Certification[]; jobTypeId: string; badgePictureId: string; }