moved series/season/episodes to object db.

This commit is contained in:
Keivan Beigi 2013-02-19 18:05:15 -08:00
commit b5644bf660
93 changed files with 1025 additions and 1338 deletions

View file

@ -6,6 +6,16 @@ using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Core.Tv
{
public enum SeriesType
{
Standard =0,
Daily =1,
Anime = 2,
}
public class Series : ModelBase
{
public virtual int SeriesId { get; set; }
@ -40,7 +50,7 @@ namespace NzbDrone.Core.Tv
public string BannerUrl { get; set; }
public bool IsDaily { get; set; }
public SeriesType SeriesType { get; set; }
public BacklogSettingType BacklogSetting { get; set; }