more !wip

This commit is contained in:
TidusJar 2019-01-30 19:35:04 +00:00
parent 0ce93071f1
commit cdec1f4f27
12 changed files with 573 additions and 8 deletions

View file

@ -0,0 +1,12 @@
using Ombi.Core.Models.Search;
using System.Collections.Generic;
using System.Threading.Tasks;
using Ombi.Core.Models.Search.V2;
namespace Ombi.Core
{
public interface IMovieEngineV2
{
Task<MovieFullInfoViewModel> GetFullMovieInformation(int theMovieDbId, string langCode = null);
}
}