This repository has been archived on 2025-04-26. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
angular-hotel-manager/src/app/hotel/hotel.ts
2024-12-03 08:06:56 +01:00

9 lines
158 B
TypeScript

export interface Hotel {
id: number;
hotelName: string;
description: string;
price: number;
imageUrl: string;
rating: number;
tags: string[];
}