List sync with removal (#656)

This commit is contained in:
geogolem
2017-02-25 16:38:52 -05:00
committed by Devin Buhl
parent 55ac2dd1bb
commit 1c6a32b684
12 changed files with 276 additions and 15 deletions

View File

@@ -118,6 +118,18 @@ namespace NzbDrone.Core.Configuration
set { SetValue("NetImportSyncInterval", value); }
}
public string ListSyncLevel
{
get { return GetValue("ListSyncLevel", "disabled"); }
set { SetValue("ListSyncLevel", value); }
}
public string ImportExclusions
{
get { return GetValue("ImportExclusions", string.Empty); }
set { SetValue("ImportExclusions", value); }
}
public int MinimumAge
{
get { return GetValueInt("MinimumAge", 0); }