mirror of
https://github.com/apricote/Listory.git
synced 2026-02-07 18:27:03 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
|
|
import { Artist } from "../../music-library/artist.entity";
|
||
|
|
|
||
|
|
export class TopArtistsReportDto {
|
||
|
|
items: {
|
||
|
|
artist: Artist;
|
||
|
|
count: number;
|
||
|
|
}[];
|
||
|
|
}
|