1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-12 09:15:35 +00:00
Lidarr/NzbDrone/Providers/WebClientProvider.cs
2011-10-06 23:57:43 -07:00

12 lines
No EOL
234 B
C#

using System.Net;
namespace NzbDrone.Providers
{
public class WebClientProvider
{
public virtual string DownloadString(string url)
{
return new WebClient().DownloadString(url);
}
}
}