You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/NzbDrone.Core/Tv/Series.cs

87 lines
1.9 KiB

using System.Linq;
using System;
12 years ago
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Model;
using NzbDrone.Core.Qualities;
using PetaPoco;
using Sqo.Attributes;
14 years ago
namespace NzbDrone.Core.Tv
14 years ago
{
public enum SeriesType
{
Standard =0,
Daily =1,
Anime = 2,
}
12 years ago
public class Series : ModelBase
14 years ago
{
12 years ago
public int TvDbId { get; set; }
14 years ago
public string Title { get; set; }
public string CleanTitle { get; set; }
public string Status { get; set; }
14 years ago
[Text]
public string Overview { get; set; }
12 years ago
//public DayOfWeek? AirsDayOfWeek { get; set; }
public String AirTime { get; set; }
public string Language { get; set; }
public string Path { get; set; }
14 years ago
public bool Monitored { get; set; }
public virtual 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; }
14 years ago
}
}