mirror of https://github.com/Radarr/Radarr
18 lines
368 B
TypeScript
18 lines
368 B
TypeScript
|
import ModelBase from 'App/ModelBase';
|
||
|
import Movie from 'Movie/Movie';
|
||
|
|
||
|
interface MovieCollection extends ModelBase {
|
||
|
title: string;
|
||
|
sortTitle: string;
|
||
|
tmdbId: number;
|
||
|
overview: string;
|
||
|
monitored: boolean;
|
||
|
rootFolderPath: string;
|
||
|
qualityProfileId: number;
|
||
|
movies: Movie[];
|
||
|
missingMovies: number;
|
||
|
tags: number[];
|
||
|
}
|
||
|
|
||
|
export default MovieCollection;
|