Added Recycle Bin to server side

New: Recycle Bin is now available
This commit is contained in:
Mark McDowall 2012-09-03 23:49:04 -07:00
commit 23118871fd
13 changed files with 586 additions and 6 deletions

View file

@ -526,6 +526,12 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("PneumaticDirectory", value); }
}
public virtual string RecycleBin
{
get { return GetValue("RecycleBin", String.Empty); }
set { SetValue("RecycleBin", value); }
}
private string GetValue(string key)
{
return GetValue(key, String.Empty);