Started on sonarr #865

This commit is contained in:
tidusjar 2017-06-30 22:02:22 +01:00
commit 2c945ebb9b
10 changed files with 358 additions and 44 deletions

View file

@ -0,0 +1,12 @@
using System.Threading.Tasks;
using Ombi.Api.Sonarr.Models;
using Ombi.Core.Settings.Models.External;
using Ombi.Store.Entities.Requests;
namespace Ombi.Core
{
public interface ITvSender
{
Task<NewSeries> SendToSonarr(ChildRequests model, int totalSeasons, string qualityId = null);
}
}