Radarr/src/NzbDrone.Common/Http/Dispatchers/IHttpDispatcher.cs

11 lines
251 B
C#

using System.Net;
namespace NzbDrone.Common.Http.Dispatchers
{
public interface IHttpDispatcher
{
HttpResponse GetResponse(HttpRequest request, CookieContainer cookies);
void DownloadFile(string url, string fileName);
}
}