You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Album/Album.ts

22 lines
419 B

import ModelBase from 'App/ModelBase';
export interface Statistics {
trackCount: number;
trackFileCount: number;
percentOfTracks: number;
sizeOnDisk: number;
totalTrackCount: number;
}
interface Album extends ModelBase {
foreignAlbumId: string;
title: string;
overview: string;
disambiguation?: string;
monitored: boolean;
releaseDate: string;
statistics: Statistics;
}
export default Album;