You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Music/MonitoringOptions.cs

29 lines
626 B

using NzbDrone.Core.Datastore;
using System.Collections.Generic;
namespace NzbDrone.Core.Music
{
public class MonitoringOptions : IEmbeddedDocument
{
public MonitoringOptions()
{
AlbumsToMonitor = new List<string>();
}
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
}
}