Got tv working on the popout cards !wip

This commit is contained in:
tidusjar 2019-02-09 00:07:36 +00:00
parent f3e781d576
commit 71ec151de1
20 changed files with 674 additions and 46 deletions

View file

@ -0,0 +1,10 @@
using System.Threading.Tasks;
using Ombi.Core.Models.Search.V2;
namespace Ombi.Core
{
public interface ITVSearchEngineV2
{
Task<SearchFullInfoTvShowViewModel> GetShowInformation(int tvdbid);
}
}