9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
export interface Hotel {
|
|
id: number;
|
|
hotelName: string;
|
|
description: string;
|
|
price: number;
|
|
imageUrl: string;
|
|
rating: number;
|
|
tags: string[];
|
|
}
|