export interface BasePrice {
  productCode: string;
  date: string;
  dateString: string;
  pricePerPerson: number;
  oldPricePerPerson: number;
}
