still dont know
This commit is contained in:
parent
073893b677
commit
00c112a119
9 changed files with 98 additions and 5 deletions
8
src/app/hotel/hotel.ts
Normal file
8
src/app/hotel/hotel.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
export interface Hotel {
|
||||
hotelId: number;
|
||||
hotelName: string;
|
||||
description: string;
|
||||
price: number;
|
||||
imageUrl: string;
|
||||
rating: number;
|
||||
}
|
Reference in a new issue