Creating whole Band details page

This commit is contained in:
2024-09-29 16:56:43 +02:00
parent a6ca7eedde
commit 907e0082e1
16 changed files with 294 additions and 111 deletions

View File

@@ -1,4 +1,5 @@
import { RatingModel } from "./ratingModel"
import { TourModel } from "./tourModel"
export class BandModel {
id: number
@@ -16,4 +17,5 @@ export class BandModel {
genres: Array<{
name: string
}>
tours: Array<TourModel>
}