mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
d283967523
This reverts commit 1d6a7a1843.
15 lines
349 B
C#
15 lines
349 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using NzbDrone.Core.Movies;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface ISearchForNewMovie
|
|
{
|
|
List<Movie> SearchForNewMovie(string title);
|
|
|
|
Movie MapMovieToTmdbMovie(Movie movie);
|
|
Task<Movie> MapMovieToTmdbMovieAsync(Movie movie);
|
|
}
|
|
}
|