Featured tours working

This commit is contained in:
2025-09-15 13:40:20 +10:00
parent f0e7ce30fc
commit e965cc2780
24 changed files with 384 additions and 26 deletions

View File

@@ -46,16 +46,20 @@ export interface Continent {
internal_name: string
}
export interface Country {
id: number
name: string
internal_name: string
continent: Continent;
}
export interface Tour {
id: number
title: string
internal_name: string
continentId: number
continentName: string
countryId: number
countryName: string
level: string
description?: string
price: number
length: number
price: number
level: string
short_description: string
countries: Country[]
}