mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02:00
moved series/season/episodes to object db.
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
Reference in New Issue
Block a user