1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

New: Setting for absolute maximum size for a release

Closes #2367 #1996
This commit is contained in:
Marcelo Castagna
2018-01-12 16:50:21 -03:00
committed by Taloth
parent d0e8aef949
commit d25e5fe329
9 changed files with 155 additions and 1 deletions
@@ -106,6 +106,12 @@ 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); }