mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 04:51:45 +02:00
started rss cleanup
This commit is contained in:
10
NzbDrone.Core/Providers/Core/IHttpProvider.cs
Normal file
10
NzbDrone.Core/Providers/Core/IHttpProvider.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace NzbDrone.Core.Providers.Core
|
||||
{
|
||||
public interface IHttpProvider
|
||||
{
|
||||
string DownloadString(string request);
|
||||
string DownloadString(string request, string username, string password);
|
||||
bool DownloadFile(string request, string filename);
|
||||
bool DownloadFile(string request, string filename, string username, string password);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user