Creating whole Band details page

This commit is contained in:
2024-09-29 16:56:43 +02:00
parent 422a5e1722
commit f898c0c5b9
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>
}