Sonarr/NzbDrone.Core/Tv/Series.cs

85 lines
1.9 KiB
C#
Raw Normal View History

using System.Linq;
using System;
2013-02-19 06:56:02 +00:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Model;
2013-02-27 03:19:22 +00:00
using NzbDrone.Core.Qualities;
2013-02-20 07:45:52 +00:00
using PetaPoco;
2010-09-23 03:19:47 +00:00
namespace NzbDrone.Core.Tv
2010-09-23 03:19:47 +00:00
{
public enum SeriesType
{
Standard =0,
Daily =1,
Anime = 2,
}
2013-02-19 06:56:02 +00:00
public class Series : ModelBase
2010-09-23 03:19:47 +00:00
{
2013-02-24 19:57:33 +00:00
public int TvDbId { get; set; }
2010-09-28 05:58:49 +00:00
2010-10-02 19:01:43 +00:00
public string Title { get; set; }
public string CleanTitle { get; set; }
2010-09-28 05:58:49 +00:00
public string Status { get; set; }
2010-09-23 03:19:47 +00:00
2010-09-28 05:58:49 +00:00
public string Overview { get; set; }
2013-02-25 00:00:17 +00:00
//public DayOfWeek? AirsDayOfWeek { get; set; }
2010-09-28 05:58:49 +00:00
2013-02-09 10:04:18 +00:00
public String AirTime { get; set; }
2010-09-28 05:58:49 +00:00
public string Language { get; set; }
2010-09-24 07:14:42 +00:00
2010-09-28 05:58:49 +00:00
public string Path { get; set; }
2010-10-02 19:01:43 +00: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 SeriesType SeriesType { get; set; }
2012-01-26 01:02:21 +00:00
public BacklogSettingType BacklogSetting { get; set; }
public string Network { get; set; }
2012-09-20 15:37:40 +00:00
public DateTime? CustomStartDate { get; set; }
2012-09-19 01:30:30 +00:00
public bool UseSceneNumbering { get; set; }
public int TvRageId { get; set; }
public string TvRageTitle { get; set; }
2013-02-13 06:32:17 +00: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; }
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; }
2010-09-23 03:19:47 +00:00
}
2010-09-28 05:58:49 +00:00
}