mirror of
https://github.com/Radarr/Radarr
synced 2026-03-04 11:32:23 +01:00
17 lines
368 B
TypeScript
17 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;
|