mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Merge branch 'series-cleanup' into vnext
This commit is contained in:
commit
385e7c2cc6
98 changed files with 1220 additions and 1608 deletions
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue