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,8 +1,8 @@
|
|||||||
export interface Hotel {
|
export interface Hotel {
|
||||||
hotelId: number;
|
hotelId: number;
|
||||||
hotelName: String;
|
hotelName: string;
|
||||||
description: String;
|
description: string;
|
||||||
price: number;
|
price: number;
|
||||||
imageUrl: String;
|
imageUrl: string;
|
||||||
rating: number;
|
rating: number;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user