New: Indexer Setting for absolute maximum size for a release

This commit is contained in:
Qstick 2018-01-14 14:47:36 -05:00
parent 96c59e2b2b
commit d9a8a92b8e
9 changed files with 158 additions and 3 deletions

View file

@ -99,6 +99,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("RssSyncInterval", value); }
}
public int MaximumSize
{
get { return GetValueInt("MaximumSize", 0);}
set { SetValue("MaximumSize", value);}
}
public int MinimumAge
{
get { return GetValueInt("MinimumAge", 0); }