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

61 lines
2.0 KiB
C#
Raw Normal View History

using System;
2013-03-31 23:25:39 +03:00
using System.Collections.Generic;
2013-04-11 07:30:51 +03:00
using Marr.Data;
2013-02-19 09:56:02 +03:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Model;
2013-02-27 06:19:22 +03:00
using NzbDrone.Core.Qualities;
2013-04-11 07:30:51 +03:00
using NzbDrone.Core.RootFolders;
2013-03-24 07:16:00 +03:00
2010-09-23 06:19:47 +03:00
namespace NzbDrone.Core.Tv
2010-09-23 06:19:47 +03:00
{
2013-02-19 09:56:02 +03:00
public class Series : ModelBase
2010-09-23 06:19:47 +03:00
{
public Series()
{
2013-04-01 00:45:16 +03:00
Images = new List<MediaCover.MediaCover>();
}
public int TvdbId { get; set; }
public int TvRageId { get; set; }
public string ImdbId { get; set; }
2010-10-02 22:01:43 +03:00
public string Title { get; set; }
public string CleanTitle { get; set; }
public SeriesStatusType Status { get; set; }
2010-09-28 08:58:49 +03:00
public string Overview { get; set; }
2013-02-09 13:04:18 +03:00
public String AirTime { get; set; }
2010-10-02 22:01:43 +03: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 23:25:39 +03:00
public List<MediaCover.MediaCover> Images { get; set; }
2013-03-24 03:08:23 +03:00
public SeriesTypes SeriesType { 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; }
public bool UseSceneNumbering { get; set; }
2013-04-01 00:45:16 +03:00
public string TitleSlug { get; set; }
2013-04-11 07:30:51 +03:00
public int RootFolderId { get; set; }
public string FolderName { get; set; }
2013-04-11 07:30:51 +03:00
public LazyLoaded<RootFolder> RootFolder { get; set; }
//Todo: Use this to auto link RootFolder and Folder (using the proper path separator)
public string Path
{
2013-04-11 19:13:57 +03:00
get
{
if (RootFolder == null || RootFolder.Value == null || String.IsNullOrWhiteSpace(RootFolder.Value.Path))
{
return null;
}
return System.IO.Path.Combine(RootFolder.Value.Path, FolderName);
}
}
2013-04-11 07:30:51 +03:00
public DateTime? FirstAired { get; set; }
public LazyLoaded<QualityProfile> QualityProfile { get; set; }
2010-09-23 06:19:47 +03:00
}
2010-09-28 08:58:49 +03:00
}