1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

New: Use RadarrApi For MovieInfo

This commit is contained in:
Qstick
2020-05-09 21:49:09 -04:00
parent 9bdaea4a1b
commit c64c2d9f27
51 changed files with 586 additions and 1794 deletions
@@ -7,8 +7,8 @@ namespace NzbDrone.Core.MetadataSource
{
public interface IProvideMovieInfo
{
Movie GetMovieInfo(string imdbId);
Tuple<Movie, List<Credit>> GetMovieInfo(int tmdbId, bool hasPreDBEntry);
Movie GetMovieByImdbId(string imdbId);
Tuple<Movie, List<Credit>> GetMovieInfo(int tmdbId);
HashSet<int> GetChangedMovies(DateTime startTime);
}
}