import { SectionConfigType } from '../enums'; import { BaseSQLModel } from './BaseSQLModel'; import { SectionLayout } from './SectionLayout'; export interface SectionConfig extends BaseSQLModel { name: string; minPictures: number; surveyId: string; instructions: string; layoutQuestion: string; layouts: SectionLayout[]; certificationId: string; possibleMixId: string; maxBudget: number; sectionType: SectionConfigType; hasExpirationDateCheck: boolean; hasShelfCheck: boolean; overlayId: string; }