Added: Additional Album Monitoring Options

This commit is contained in:
Qstick
2018-04-08 02:25:34 -04:00
parent af090c7a3a
commit f9fb33eb08
10 changed files with 102 additions and 95 deletions
+13 -3
View File
@@ -9,10 +9,20 @@ namespace NzbDrone.Core.Music
{
AlbumsToMonitor = new List<string>();
}
public bool IgnoreAlbumsWithFiles { get; set; }
public bool IgnoreAlbumsWithoutFiles { get; set; }
public MonitoringOption SelectedOption { get; set; }
public List<string> AlbumsToMonitor { get; set; }
public bool Monitored { get; set; }
}
public enum MonitoringOption
{
All = 0,
Future = 1,
Missing = 2,
Existing = 3,
Latest = 4,
First = 5,
None = 6
}
}