More NzbDrone.exe refactoring

This commit is contained in:
kay.one
2011-10-06 20:37:41 -07:00
parent f3ca3e97f9
commit 69ba365cd3
11 changed files with 324 additions and 176 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
namespace NzbDrone.Providers
{
internal class WebClientProvider
{
public virtual string DownloadString(string url)
{
return new WebClient().DownloadString(url);
}
}
}