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 = {
albumCount?: number;
id: string;
name: string;
songCount?: number;
};
export type Album = {