Files
iTunes/dashboard/src/app/model/artist.ts
Maxence G. de Montauzan 6300e9cfc7 Refactoring
Move Top Played part.
Move pipes and dashboard
Rename object folder to model
Doc pipes
2018-03-20 23:32:21 +01:00

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;
}