Pneumatic added to server side

This commit is contained in:
Mark McDowall 2012-08-29 17:20:48 -07:00
commit 853f7689bc
4 changed files with 164 additions and 0 deletions

View file

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