import { BaseSQLModel } from './BaseSQLModel'; import { DynamicMix } from './DynamicMix'; import { InventoryProductCount } from './InventoryProductCount'; export interface InventorySection extends BaseSQLModel { dynamicMix: DynamicMix; productsCount: InventoryProductCount[]; }