mirror of https://github.com/Radarr/Radarr
19 lines
405 B
C#
19 lines
405 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Movies
|
|
{
|
|
public class MonitoringOptions : IEmbeddedDocument
|
|
{
|
|
public bool IgnoreEpisodesWithFiles { get; set; }
|
|
public bool IgnoreEpisodesWithoutFiles { get; set; }
|
|
public MonitorTypes Monitor { get; set; }
|
|
}
|
|
|
|
public enum MonitorTypes
|
|
{
|
|
MovieOnly,
|
|
MovieAndCollection,
|
|
None
|
|
}
|
|
}
|