style(hotel): fix string casing in Hotel interface
All checks were successful
Build / Build and analyze (push) Successful in 1m43s
All checks were successful
Build / Build and analyze (push) Successful in 1m43s
This commit is contained in:
parent
8d1a676f5e
commit
43cc6e96ec
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
export interface Hotel {
|
||||
hotelId: number;
|
||||
hotelName: String;
|
||||
description: String;
|
||||
hotelName: string;
|
||||
description: string;
|
||||
price: number;
|
||||
imageUrl: String;
|
||||
imageUrl: string;
|
||||
rating: number;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue