New: options when adding series, including the ability to search for all missing episodes

This commit is contained in:
Mark McDowall
2014-12-09 18:20:50 -08:00
parent 7b7f7ac56b
commit 05ee57a972
21 changed files with 594 additions and 65 deletions
+11
View File
@@ -0,0 +1,11 @@
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; }
}
}