mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Calendar colouring, upcoming list shows yesterday
Cleaned up series file a bit. Added spoon for common sugar tasks.
This commit is contained in:
parent
14cf5bf3cc
commit
da2c0d1d65
15 changed files with 130 additions and 68 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System;
|
||||
using NzbDrone.Core.Datastore;
|
||||
using NzbDrone.Core.Model;
|
||||
|
@ -8,8 +9,6 @@ using Sqo.Attributes;
|
|||
|
||||
namespace NzbDrone.Core.Tv
|
||||
{
|
||||
|
||||
|
||||
public enum SeriesType
|
||||
{
|
||||
Standard =0,
|
||||
|
@ -17,71 +16,44 @@ namespace NzbDrone.Core.Tv
|
|||
Anime = 2,
|
||||
}
|
||||
|
||||
|
||||
public class Series : ModelBase
|
||||
{
|
||||
public int TvDbId { get; set; }
|
||||
|
||||
public string Title { get; set; }
|
||||
|
||||
public string CleanTitle { get; set; }
|
||||
|
||||
public string Status { get; set; }
|
||||
|
||||
[Text]
|
||||
public string Overview { get; set; }
|
||||
|
||||
//public DayOfWeek? AirsDayOfWeek { get; set; }
|
||||
|
||||
public String AirTime { get; set; }
|
||||
|
||||
public string Language { get; set; }
|
||||
|
||||
public string Path { get; set; }
|
||||
|
||||
public bool Monitored { get; set; }
|
||||
|
||||
public virtual int QualityProfileId { get; set; }
|
||||
|
||||
public int QualityProfileId { get; set; }
|
||||
public bool SeasonFolder { get; set; }
|
||||
|
||||
public DateTime? LastInfoSync { get; set; }
|
||||
|
||||
public DateTime? LastDiskSync { get; set; }
|
||||
|
||||
public int Runtime { get; set; }
|
||||
|
||||
public string BannerUrl { get; set; }
|
||||
|
||||
public SeriesType SeriesType { get; set; }
|
||||
|
||||
public BacklogSettingType BacklogSetting { get; set; }
|
||||
|
||||
public string Network { get; set; }
|
||||
|
||||
public DateTime? CustomStartDate { get; set; }
|
||||
|
||||
public bool UseSceneNumbering { get; set; }
|
||||
|
||||
public int TvRageId { get; set; }
|
||||
|
||||
public string TvRageTitle { get; set; }
|
||||
|
||||
//Todo: This should be a double since there are timezones that aren't on a full hour offset
|
||||
public int UtcOffset { get; set; }
|
||||
|
||||
public DateTime? FirstAired { get; set; }
|
||||
|
||||
public bool Hidden { get; set; }
|
||||
|
||||
public QualityProfile QualityProfile { get; set; }
|
||||
|
||||
public int EpisodeCount { get; set; }
|
||||
|
||||
public int EpisodeFileCount { get; set; }
|
||||
|
||||
public int SeasonCount { get; set; }
|
||||
|
||||
public DateTime? NextAiring { get; set; }
|
||||
|
||||
public List<Episode> Episodes { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue