Add albumCount and songCount to genre
This commit is contained in:
parent
5b616d5928
commit
6d5e10a31c
1 changed files with 2 additions and 0 deletions
|
@ -129,8 +129,10 @@ export type AuthenticationResponse = {
|
|||
};
|
||||
|
||||
export type Genre = {
|
||||
albumCount?: number;
|
||||
id: string;
|
||||
name: string;
|
||||
songCount?: number;
|
||||
};
|
||||
|
||||
export type Album = {
|
||||
|
|
Reference in a new issue