still dont know

This commit is contained in:
csimonis 2024-09-03 14:59:09 +02:00
commit 00c112a119
9 changed files with 98 additions and 5 deletions

8
src/app/hotel/hotel.ts Normal file
View file

@ -0,0 +1,8 @@
export interface Hotel {
hotelId: number;
hotelName: string;
description: string;
price: number;
imageUrl: string;
rating: number;
}