BacklogStatus added to individually control which series are included in backlog searches. Applies to Backlog and RecentBacklog jobs. Editable in Series/MassEdit and Series Edit.

This commit is contained in:
Mark McDowall
2012-01-23 22:29:32 -08:00
parent fb17765d3a
commit 9eb022fdf4
14 changed files with 424 additions and 26 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace NzbDrone.Core.Model
{
public enum BacklogStatusType
{
Disable = 0,
Enable = 1,
Inherit = 2
}
}