import { Schema } from 'mongoose';
export interface RoomTypeVo {
    hotel: string | Schema.Types.ObjectId;
    title: string;
    maximumOccupancy: number;
    bedTypeCode: string;
    hasExtraBed: number;
    hasWindow: number;
    floor: string;
    area: string;
    bedCount: number;
    photos: string[];
    wifi: number;
    facilities: number[];
}
