Filterable tours

This commit is contained in:
2024-09-29 14:28:29 +02:00
parent 4bcc2b86d5
commit 422a5e1722
36 changed files with 265 additions and 114 deletions

View File

@@ -0,0 +1,12 @@
export class CityModel {
id: number
name: string
country: string
image: string
locations: Array<{
id: number
name: string
address: string
image: string
}>
}