1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-08 12:05:40 +02:00
Sonarr/NzbDrone.Core/Tv/Series.cs

51 lines
1.6 KiB
C#
Raw Normal View History

using System;
2013-03-31 13:25:39 -07:00
using System.Collections.Generic;
2013-04-10 21:30:51 -07:00
using Marr.Data;
2013-02-18 22:56:02 -08:00
using NzbDrone.Core.Datastore;
2013-02-26 19:19:22 -08:00
using NzbDrone.Core.Qualities;
2013-07-04 22:17:25 -07:00
using NzbDrone.Common;
2013-03-23 21:16:00 -07:00
2010-09-22 20:19:47 -07:00
namespace NzbDrone.Core.Tv
2010-09-22 20:19:47 -07:00
{
2013-02-18 22:56:02 -08:00
public class Series : ModelBase
2010-09-22 20:19:47 -07:00
{
public Series()
{
2013-03-31 14:45:16 -07:00
Images = new List<MediaCover.MediaCover>();
}
public int TvdbId { get; set; }
public int TvRageId { get; set; }
public string ImdbId { get; set; }
2010-10-02 12:01:43 -07:00
public string Title { get; set; }
public string CleanTitle { get; set; }
public SeriesStatusType Status { get; set; }
2010-09-27 22:58:49 -07:00
public string Overview { get; set; }
2013-02-09 02:04:18 -08:00
public String AirTime { get; set; }
2010-10-02 12:01:43 -07:00
public bool Monitored { get; set; }
public int QualityProfileId { get; set; }
public bool SeasonFolder { get; set; }
public DateTime? LastInfoSync { get; set; }
public int Runtime { get; set; }
2013-03-31 13:25:39 -07:00
public List<MediaCover.MediaCover> Images { get; set; }
2013-03-23 17:08:23 -07:00
public SeriesTypes SeriesType { get; set; }
public string Network { get; set; }
public bool UseSceneNumbering { get; set; }
2013-03-31 14:45:16 -07:00
public string TitleSlug { get; set; }
public string Path { get; set; }
2013-09-09 22:22:38 -07:00
public int Year { get; set; }
public string RootFolderPath { get; set; }
2013-04-10 21:30:51 -07:00
public DateTime? FirstAired { get; set; }
public LazyLoaded<QualityProfile> QualityProfile { get; set; }
2013-07-04 22:17:25 -07:00
2013-09-09 22:22:38 -07:00
public List<Season> Seasons { get; set; }
2013-07-04 22:17:25 -07:00
public override string ToString()
{
return string.Format("[{0}][{1}]", TvdbId, Title.NullSafe());
2013-07-04 22:17:25 -07:00
}
2010-09-22 20:19:47 -07:00
}
2010-09-27 22:58:49 -07:00
}