mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 23:45:46 +02:00
Merge branch 'series-cleanup' into vnext
This commit is contained in:
@@ -1,12 +1,23 @@
|
||||
using System.Linq;
|
||||
using System;
|
||||
using NzbDrone.Core.Datastore;
|
||||
using NzbDrone.Core.Model;
|
||||
using NzbDrone.Core.Repository.Quality;
|
||||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Tv
|
||||
{
|
||||
public class Series
|
||||
|
||||
|
||||
public enum SeriesType
|
||||
{
|
||||
Standard =0,
|
||||
Daily =1,
|
||||
Anime = 2,
|
||||
}
|
||||
|
||||
|
||||
public class Series : ModelBase
|
||||
{
|
||||
public virtual int SeriesId { get; set; }
|
||||
|
||||
@@ -41,7 +52,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