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