import { BaseSQLModel } from './BaseSQLModel'; import { DynamicMix } from './DynamicMix'; import { SurveyProductPrice } from './SurveyProductPrice'; export interface PriceSurveySection extends BaseSQLModel { dynamicMix: DynamicMix; surveyProductPrices: SurveyProductPrice[]; }