New: Blackhole implemented, allowing clients other than SABnzbd to be used.

This commit is contained in:
Mark McDowall 2012-01-28 15:53:14 -08:00
commit a96ff2519a
6 changed files with 147 additions and 8 deletions

View file

@ -416,6 +416,12 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("DownloadClient", (int)value); }
}
public virtual string BlackholeDirectory
{
get { return GetValue("BlackholeDirectory", String.Empty); }
set { SetValue("BlackholeDirectory", value); }
}
public string UGuid
{
get { return GetValue("UGuid", Guid.NewGuid().ToString(), persist: true); }