You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Core/Senders/ITvSender.cs

10 lines
198 B

using System.Threading.Tasks;
using Ombi.Store.Entities.Requests;
namespace Ombi.Core.Senders
{
public interface ITvSender
{
Task<SenderResult> Send(ChildRequests model);
}
}