import { RoomOptionPaxType } from "./room-option-pax-type";

export interface BookingPackageRoomOption {
  entryLineGuid: string;
  allotmentId?: number;
  productCode: string;
  accommodationCode: string;
  externalAccommodationCode: string;
  accommodationName: string;
  regimeCode: string;
  regimeName: string;
  price: number;
  isSelected: boolean;
  isLocked: boolean;
  quantity: number;
  from: string;
  to: string;
  tourCode: string;
  isOnRequest: boolean;
  paxTypes: RoomOptionPaxType;
  remarks: string;
}
