1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Core/Repository/Series.cs

89 lines
2.4 KiB
C#
Raw Normal View History

2010-09-23 05:19:47 +02:00
using System;
using System.ComponentModel;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository.Quality;
2011-06-15 04:31:41 +02:00
using PetaPoco;
2010-09-23 05:19:47 +02:00
namespace NzbDrone.Core.Repository
2010-09-23 05:19:47 +02:00
{
2011-06-17 04:27:10 +02:00
[PrimaryKey("SeriesId", autoIncrement = false)]
public class Series
2010-09-23 05:19:47 +02:00
{
2010-10-05 08:21:18 +02:00
public virtual int SeriesId { get; set; }
2010-09-28 07:58:49 +02:00
2010-10-02 21:01:43 +02:00
public string Title { get; set; }
public string CleanTitle { get; set; }
2010-09-28 07:58:49 +02:00
public string Status { get; set; }
2010-09-23 05:19:47 +02:00
2010-09-28 07:58:49 +02:00
public string Overview { get; set; }
[DisplayName("Air on")]
2010-09-28 07:58:49 +02:00
public DayOfWeek? AirsDayOfWeek { get; set; }
2013-02-09 11:04:18 +01:00
[Column("AirTimes")]
public String AirTime { get; set; }
2010-09-28 07:58:49 +02:00
public string Language { get; set; }
2010-09-24 09:14:42 +02:00
2010-09-28 07:58:49 +02:00
public string Path { get; set; }
2010-10-02 21:01:43 +02:00
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 bool IsDaily { get; set; }
2012-01-26 02:02:21 +01:00
public BacklogSettingType BacklogSetting { get; set; }
public string Network { get; set; }
2012-09-20 17:37:40 +02:00
public DateTime? CustomStartDate { get; set; }
2012-09-19 03:30:30 +02:00
public bool UseSceneNumbering { get; set; }
public int TvRageId { get; set; }
public string TvRageTitle { get; set; }
2013-02-13 07:32:17 +01:00
//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; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="Series"/> is hidden.
/// </summary>
/// <value><c>true</c> if hidden; otherwise, <c>false</c>.</value>
/// <remarks>This field will be used for shows that are pending delete or
/// new series that haven't been successfully imported</remarks>
2013-02-04 01:10:15 +01:00
[PetaPoco.Ignore]
public bool Hidden { get; set; }
[ResultColumn]
public QualityProfile QualityProfile { get; set; }
[ResultColumn]
public int EpisodeCount { get; set; }
[ResultColumn]
public int EpisodeFileCount { get; set; }
[ResultColumn]
public int SeasonCount { get; set; }
[ResultColumn]
public DateTime? NextAiring { get; set; }
2010-09-23 05:19:47 +02:00
}
2010-09-28 07:58:49 +02:00
}