mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 08:42:57 -07:00
22 lines
No EOL
698 B
C#
22 lines
No EOL
698 B
C#
using Ombi.Core.Models.Search;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ombi.Core
|
|
{
|
|
public interface IMovieEngine
|
|
{
|
|
Task<IEnumerable<SearchMovieViewModel>> NowPlayingMovies();
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> PopularMovies();
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> Search(string search);
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> TopRatedMovies();
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> UpcomingMovies();
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> LookupImdbInformation(IEnumerable<SearchMovieViewModel> movies);
|
|
Task<SearchMovieViewModel> LookupImdbInformation(int theMovieDbId);
|
|
}
|
|
} |