2010-09-23 06:19:47 +03:00
|
|
|
using System;
|
2011-03-31 04:42:27 +03:00
|
|
|
using System.ComponentModel;
|
2013-02-04 03:10:15 +03:00
|
|
|
using Eloquera.Client;
|
2012-01-24 09:29:32 +03:00
|
|
|
using NzbDrone.Core.Model;
|
2011-02-15 05:48:39 +02:00
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-06-15 05:31:41 +03:00
|
|
|
using PetaPoco;
|
2010-09-23 06:19:47 +03:00
|
|
|
|
2010-10-21 04:49:23 +03:00
|
|
|
namespace NzbDrone.Core.Repository
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2011-06-17 05:27:10 +03:00
|
|
|
[PrimaryKey("SeriesId", autoIncrement = false)]
|
2010-09-23 06:19:47 +03:00
|
|
|
public class Series
|
|
|
|
{
|
2013-02-04 03:10:15 +03:00
|
|
|
[ID]
|
2013-02-06 11:40:57 +03:00
|
|
|
public long Id;
|
2013-02-04 03:10:15 +03:00
|
|
|
|
2010-10-05 09:21:18 +03:00
|
|
|
public virtual int SeriesId { get; set; }
|
2010-09-28 08:58:49 +03:00
|
|
|
|
2010-10-02 22:01:43 +03:00
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
public string CleanTitle { get; set; }
|
2010-09-28 08:58:49 +03:00
|
|
|
|
|
|
|
public string Status { get; set; }
|
2010-09-23 06:19:47 +03:00
|
|
|
|
2010-09-28 08:58:49 +03:00
|
|
|
public string Overview { get; set; }
|
|
|
|
|
2011-03-31 04:42:27 +03:00
|
|
|
[DisplayName("Air on")]
|
2010-09-28 08:58:49 +03:00
|
|
|
public DayOfWeek? AirsDayOfWeek { get; set; }
|
|
|
|
|
2013-02-09 13:04:18 +03:00
|
|
|
[Column("AirTimes")]
|
|
|
|
public String AirTime { get; set; }
|
2010-09-28 08:58:49 +03:00
|
|
|
|
|
|
|
public string Language { get; set; }
|
2010-09-24 10:14:42 +03:00
|
|
|
|
2010-09-28 08:58:49 +03:00
|
|
|
public string Path { get; set; }
|
2010-10-01 03:09:22 +03:00
|
|
|
|
2010-10-02 22:01:43 +03:00
|
|
|
public bool Monitored { get; set; }
|
|
|
|
|
2011-06-18 07:39:02 +03:00
|
|
|
public virtual int QualityProfileId { get; set; }
|
|
|
|
|
|
|
|
public bool SeasonFolder { get; set; }
|
|
|
|
|
|
|
|
public DateTime? LastInfoSync { get; set; }
|
|
|
|
|
|
|
|
public DateTime? LastDiskSync { get; set; }
|
|
|
|
|
2011-09-10 11:42:05 +03:00
|
|
|
public int Runtime { get; set; }
|
|
|
|
|
|
|
|
public string BannerUrl { get; set; }
|
|
|
|
|
2011-11-26 05:20:50 +03:00
|
|
|
public bool IsDaily { get; set; }
|
|
|
|
|
2012-01-26 04:02:21 +03:00
|
|
|
public BacklogSettingType BacklogSetting { get; set; }
|
2012-01-24 09:29:32 +03:00
|
|
|
|
2012-02-29 10:20:40 +03:00
|
|
|
public string Network { get; set; }
|
|
|
|
|
2012-09-20 18:37:40 +03:00
|
|
|
public DateTime? CustomStartDate { get; set; }
|
2012-09-19 04:30:30 +03:00
|
|
|
|
2012-10-17 10:39:06 +03:00
|
|
|
public bool UseSceneNumbering { get; set; }
|
|
|
|
|
2012-12-19 19:41:51 +03:00
|
|
|
public int TvRageId { get; set; }
|
|
|
|
|
|
|
|
public string TvRageTitle { get; set; }
|
|
|
|
|
|
|
|
public int UtcOffset { get; set; }
|
|
|
|
|
2012-12-27 03:16:15 +03:00
|
|
|
public DateTime? FirstAired { get; set; }
|
|
|
|
|
2011-05-21 03:23:49 +03:00
|
|
|
/// <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 03:10:15 +03:00
|
|
|
[PetaPoco.Ignore]
|
2011-05-21 03:23:49 +03:00
|
|
|
public bool Hidden { get; set; }
|
|
|
|
|
2011-06-22 03:11:08 +03:00
|
|
|
[ResultColumn]
|
2011-06-18 07:39:02 +03:00
|
|
|
public QualityProfile QualityProfile { get; set; }
|
2011-06-20 10:13:17 +03:00
|
|
|
|
|
|
|
[ResultColumn]
|
|
|
|
public int EpisodeCount { get; set; }
|
|
|
|
|
|
|
|
[ResultColumn]
|
|
|
|
public int EpisodeFileCount { get; set; }
|
|
|
|
|
|
|
|
[ResultColumn]
|
|
|
|
public int SeasonCount { get; set; }
|
2011-09-28 20:56:30 +03:00
|
|
|
|
|
|
|
[ResultColumn]
|
|
|
|
public DateTime? NextAiring { get; set; }
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
2010-09-28 08:58:49 +03:00
|
|
|
}
|