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