1 | export interface MusicRepositoryGenresResponseRootObject {
|
2 | items: MusicRepositoryGenresResponseItemsItem[];
|
3 | status: string;
|
4 | }
|
5 | export interface MusicRepositoryGenresResponseItemsItem {
|
6 | genre: MusicRepositoryGenresResponseGenre;
|
7 | }
|
8 | export interface MusicRepositoryGenresResponseGenre {
|
9 | id: string;
|
10 | name: string;
|
11 | cover_artwork_uri: string;
|
12 | }
|