New: Nested Settings and Seed Ratio Setting (#379)

* New: Nested Settings and Seed Ratio Setting

* Fixed: Sonarr related variable naming
This commit is contained in:
Qstick
2018-06-01 21:59:54 -04:00
committed by GitHub
parent dabb9bc18a
commit 089d213816
42 changed files with 657 additions and 172 deletions
@@ -1,6 +1,7 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Download.Clients;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.Parser.Model
@@ -12,6 +13,7 @@ namespace NzbDrone.Core.Parser.Model
public Artist Artist { get; set; }
public List<Album> Albums { get; set; }
public bool DownloadAllowed { get; set; }
public TorrentSeedConfiguration SeedConfiguration { get; set; }
public bool IsRecentAlbum()
{
@@ -23,4 +25,4 @@ namespace NzbDrone.Core.Parser.Model
return Release.Title;
}
}
}
}