import { Pax } from ".";
export interface EntryRoom {
  id: number;
  roomType: number;
  travellers: Pax[];
}
