export interface BookingPackageHotelOption {
  entryLineGuid: string;
  accommodationCode: string;
  accommodationName: string;
  regimeCode: string;
  regimeName: string;
  price: number;
  isSelected: boolean;
  roomIndex: number;
}
