Added another API

This commit is contained in:
tidusjar 2019-12-06 00:32:08 +00:00
parent cdcea0ca8b
commit 92195a1598
12 changed files with 131 additions and 40 deletions

View file

@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Ombi.Core
{
public interface IImageService
{
Task<string> GetTvBackground(string tvdbId);
}
}