1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Tv/Series.cs

73 lines
1.7 KiB
C#
Raw Normal View History

using System.Linq;
using System;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository.Quality;
2010-09-23 06:19:47 +03:00
namespace NzbDrone.Core.Tv
2010-09-23 06:19:47 +03:00
{
public class Series
2010-09-23 06:19:47 +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; }
public DayOfWeek? AirsDayOfWeek { get; set; }
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-02 22:01:43 +03: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 04:02:21 +03:00
public BacklogSettingType BacklogSetting { get; set; }
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
public bool UseSceneNumbering { get; set; }
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
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 06:19:47 +03:00
}
2010-09-28 08:58:49 +03:00
}