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