Add albumCount and songCount to genre

This commit is contained in:
jeffvli 2023-05-08 02:42:38 -07:00
parent 5b616d5928
commit 6d5e10a31c

View file

@ -129,8 +129,10 @@ export type AuthenticationResponse = {
}; };
export type Genre = { export type Genre = {
albumCount?: number;
id: string; id: string;
name: string; name: string;
songCount?: number;
}; };
export type Album = { export type Album = {