Ombi/src/Ombi.Core/IImageService.cs
2019-12-06 00:32:08 +00:00

9 lines
No EOL
157 B
C#

using System.Threading.Tasks;
namespace Ombi.Core
{
public interface IImageService
{
Task<string> GetTvBackground(string tvdbId);
}
}