mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
12 lines
310 B
C#
12 lines
310 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
{
|
|
public class AddSeriesOptions : IEmbeddedDocument
|
|
{
|
|
public bool SearchForMissingEpisodes { get; set; }
|
|
public bool IgnoreEpisodesWithFiles { get; set; }
|
|
public bool IgnoreEpisodesWithoutFiles { get; set; }
|
|
}
|
|
}
|