import { BaseSQLModel } from './BaseSQLModel'; import { SectionConfig } from './SectionConfig'; import { StoreSLA } from './StoreSLA'; export interface SLASectionConfig extends BaseSQLModel { section: SectionConfig; storeSLA: StoreSLA; order: number; required: boolean; }