Filterable tours

This commit is contained in:
2024-09-29 14:28:29 +02:00
parent 0616409f14
commit a6ca7eedde
36 changed files with 265 additions and 114 deletions

View File

@@ -0,0 +1,9 @@
import { LocationModel } from "./locationModel"
export class ConcertModel {
id: number
inStock: number
date: string
price: number
location: LocationModel
}