Move Top Played part. Move pipes and dashboard Rename object folder to model Doc pipes
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
export class Artist {
|
|
Name: string;
|
|
Album: string[];
|
|
Artist: string;
|
|
Rating: number;
|
|
Genre: Array<string>;
|
|
'Track Count': number;
|
|
'Persistent ID': string;
|
|
'Play Count': number;
|
|
}
|