refactor Genre domain type to include serverType and serverId

This commit is contained in:
jeffvli
2025-11-13 21:50:11 -08:00
parent 4f1d39d3c4
commit 173e00af3d
6 changed files with 25 additions and 6 deletions
+2
View File
@@ -262,6 +262,8 @@ export type GainInfo = {
};
export type Genre = {
_serverId: string;
_serverType: ServerType;
albumCount?: number;
id: string;
imageUrl: null | string;