2013-02-19 09:01:03 +03:00
|
|
|
using System.Linq;
|
|
|
|
using System;
|
2013-02-19 09:56:02 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
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;
|
2013-02-20 10:45:52 +03:00
|
|
|
using PetaPoco;
|
2010-09-23 06:19:47 +03:00
|
|
|
|
2013-02-19 09:01:03 +03:00
|
|
|
namespace NzbDrone.Core.Tv
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2013-02-20 05:05:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
public enum SeriesType
|
|
|
|
{
|
|
|
|
Standard =0,
|
|
|
|
Daily =1,
|
|
|
|
Anime = 2,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-19 09:56:02 +03:00
|
|
|
public class Series : ModelBase
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2013-02-24 22:57:33 +03:00
|
|
|
public int TvDbId { 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; }
|
|
|
|
|
|
|
|
public DayOfWeek? AirsDayOfWeek { get; set; }
|
|
|
|
|
2013-02-20 10:45:52 +03:00
|
|
|
[Column("AirTimes")]
|
2013-02-09 13:04:18 +03:00
|
|
|
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; }
|
|
|
|
|
2013-02-20 05:05:15 +03:00
|
|
|
public SeriesType SeriesType { get; set; }
|
2011-11-26 05:20:50 +03:00
|
|
|
|
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; }
|
|
|
|
|
2013-02-13 09:32:17 +03:00
|
|
|
//Todo: This should be a double since there are timezones that aren't on a full hour offset
|
2012-12-19 19:41:51 +03:00
|
|
|
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
|
|
|
public bool Hidden { get; set; }
|
|
|
|
|
2011-06-18 07:39:02 +03:00
|
|
|
public QualityProfile QualityProfile { get; set; }
|
2011-06-20 10:13:17 +03:00
|
|
|
|
|
|
|
public int EpisodeCount { get; set; }
|
|
|
|
|
|
|
|
public int EpisodeFileCount { get; set; }
|
|
|
|
|
|
|
|
public int SeasonCount { get; set; }
|
2011-09-28 20:56:30 +03:00
|
|
|
|
|
|
|
public DateTime? NextAiring { get; set; }
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
2010-09-28 08:58:49 +03:00
|
|
|
}
|