1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

More Season ignore work. Already ignored seasons will be ignored.

Fix: Season Ignore is handled separately from Episode Ignore.
This commit is contained in:
Mark McDowall
2012-02-20 22:50:38 -08:00
parent 969f8ae5e2
commit aac42d4882
12 changed files with 171 additions and 47 deletions
+4
View File
@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using NzbDrone.Core.Model;
using PetaPoco;
@@ -12,5 +13,8 @@ namespace NzbDrone.Core.Repository
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public Boolean Ignored { get; set; }
[ResultColumn]
public List<Episode> Episodes { get; set; }
}
}