style(hotel): fix string casing in Hotel interface
All checks were successful
Build / Build and analyze (push) Successful in 1m43s

This commit is contained in:
Jan Gleytenhoover 2024-10-01 07:55:31 +02:00
parent 8d1a676f5e
commit 43cc6e96ec
Signed by: jank
GPG Key ID: B267751B8AE29EFE

@ -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;
}