mirror of
https://github.com/apricote/Listory.git
synced 2026-02-08 18:57:03 +00:00
9 lines
150 B
TypeScript
9 lines
150 B
TypeScript
|
|
import { Album } from "../../music-library/album.entity";
|
||
|
|
|
||
|
|
export class TopAlbumsReportDto {
|
||
|
|
items: {
|
||
|
|
album: Album;
|
||
|
|
count: number;
|
||
|
|
}[];
|
||
|
|
}
|