Files
web/components/HotelReservation/SelectHotel/HotelCard/data.ts
2024-07-10 11:31:45 +02:00

11 lines
168 B
TypeScript

export interface HotelCardData {
hotel: {
name: string
address: string
description: string
rooms: string
button: string
label: string[]
}
}