import { BaseSQLModel } from './BaseSQLModel'; import { DynamicMix } from './DynamicMix'; export interface ReplenishmentSection extends BaseSQLModel { dynamicMix: DynamicMix; picturesStartIds: string[]; picturesEndIds: string[]; checkedProductsIds: string[]; }