mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
24 lines
478 B
C#
24 lines
478 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
{
|
|
public class MonitoringOptions : IEmbeddedDocument
|
|
{
|
|
public bool IgnoreEpisodesWithFiles { get; set; }
|
|
public bool IgnoreEpisodesWithoutFiles { get; set; }
|
|
public MonitorTypes Monitor { get; set; }
|
|
}
|
|
|
|
public enum MonitorTypes
|
|
{
|
|
Unknown,
|
|
All,
|
|
Future,
|
|
Missing,
|
|
Existing,
|
|
FirstSeason,
|
|
LatestSeason,
|
|
None
|
|
}
|
|
}
|