mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
10 lines
No EOL
204 B
C#
10 lines
No EOL
204 B
C#
using System.Threading.Tasks;
|
|
using Ombi.Store;
|
|
|
|
namespace Ombi.Core
|
|
{
|
|
public interface IMovieSender
|
|
{
|
|
Task<MovieSenderResult> Send(RequestedModel model, string qualityId = "");
|
|
}
|
|
} |