beginnings of artist grid and artist details view

This commit is contained in:
2026-02-22 19:17:27 -05:00
parent 30bbdd7c53
commit 9dabfb81c5
15 changed files with 1186 additions and 10 deletions
+14
View File
@@ -26,6 +26,20 @@ export namespace library {
this.Year = source["Year"];
}
}
export class Artist {
ID: number;
Name: string;
static createFrom(source: any = {}) {
return new Artist(source);
}
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.ID = source["ID"];
this.Name = source["Name"];
}
}
export class ScanMetrics {
total: number;
loadExisting: number;