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/IMovieSender.cs

11 lines
229 B

using System.Threading.Tasks;
using Ombi.Core.Senders;
using Ombi.Store.Entities.Requests;
namespace Ombi.Core
{
public interface IMovieSender
{
Task<SenderResult> Send(MovieRequests model, bool is4K);
}
}