mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
12 lines
No EOL
292 B
C#
12 lines
No EOL
292 B
C#
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, string qualityId = null);
|
|
}
|
|
} |