18 lines
352 B
TypeScript
18 lines
352 B
TypeScript
export type Room = {
|
|
id: string;
|
|
slug: string;
|
|
imageKeys?: string[];
|
|
name: string;
|
|
shortDescription: string;
|
|
longDescription: string;
|
|
nightlyRate: number;
|
|
priceCurrency: "USD" | "ETB";
|
|
maxGuests: number;
|
|
beds: string;
|
|
sizeSqM: number;
|
|
view: string;
|
|
highlights: string[];
|
|
gallery: string[];
|
|
tourEmbedUrl: string | null;
|
|
};
|