mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
23 lines
No EOL
686 B
C#
23 lines
No EOL
686 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, int? year);
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> TopRatedMovies();
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> UpcomingMovies();
|
|
|
|
Task<SearchMovieViewModel> LookupImdbInformation(int theMovieDbId);
|
|
|
|
Task<IEnumerable<SearchMovieViewModel>> SimilarMovies(int theMovieDbId);
|
|
}
|
|
} |