import { BaseModel } from './BaseModel'; import { JobSectionInventoryChecked } from './JobSectionInventoryChecked'; import { Planogram } from './Planogram'; export interface JobSection extends BaseModel { name: string; question: string; otherInfo: string; minPictures: number; planograms: (string | Planogram)[]; material: boolean; rewardTypesIds: string[]; companyId: string; picturesStartIds: string[]; picturesFinishIds: string[]; inventoryChecked: JobSectionInventoryChecked[]; contact: string; checkInHours: string[]; checkIns: (string | Date)[]; }