1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Tv/Series.cs

63 lines
2.0 KiB
C#
Raw Normal View History

using System;
2013-03-31 22:25:39 +02:00
using System.Collections.Generic;
2013-04-11 06:30:51 +02:00
using Marr.Data;
2013-02-19 07:56:02 +01:00
using NzbDrone.Core.Datastore;
2013-03-31 22:25:39 +02:00
using NzbDrone.Core.MetadataSource.Trakt;
using NzbDrone.Core.Model;
2013-02-27 04:19:22 +01:00
using NzbDrone.Core.Qualities;
2013-04-11 06:30:51 +02:00
using NzbDrone.Core.RootFolders;
2013-03-24 05:16:00 +01:00
2010-09-23 05:19:47 +02:00
namespace NzbDrone.Core.Tv
2010-09-23 05:19:47 +02:00
{
public enum SeriesTypes
{
Standard = 0,
Daily = 1,
Anime = 2,
}
2013-02-19 07:56:02 +01:00
public class Series : ModelBase
2010-09-23 05:19:47 +02:00
{
public Series()
{
2013-03-31 23:45:16 +02:00
Images = new List<MediaCover.MediaCover>();
}
2013-02-24 20:57:33 +01:00
public int TvDbId { get; set; }
public int TvRageId { get; set; }
public string ImdbId { get; set; }
2010-10-02 21:01:43 +02:00
public string Title { get; set; }
public string CleanTitle { get; set; }
public SeriesStatusType Status { get; set; }
2010-09-28 07:58:49 +02:00
public string Overview { get; set; }
2013-02-09 11:04:18 +01:00
public String AirTime { get; set; }
2010-10-02 21:01:43 +02:00
public bool Monitored { get; set; }
public int QualityProfileId { get; set; }
public bool SeasonFolder { get; set; }
public DateTime? LastInfoSync { get; set; }
public DateTime? LastDiskSync { get; set; }
public int Runtime { get; set; }
2013-03-31 22:25:39 +02:00
public List<MediaCover.MediaCover> Images { get; set; }
2013-03-24 01:08:23 +01:00
public SeriesTypes SeriesType { get; set; }
2012-01-26 02:02:21 +01:00
public BacklogSettingType BacklogSetting { get; set; }
public string Network { get; set; }
2012-09-20 17:37:40 +02:00
public DateTime? CustomStartDate { get; set; }
public bool UseSceneNumbering { get; set; }
2013-03-31 23:45:16 +02:00
public string TitleSlug { get; set; }
2013-04-11 06:30:51 +02:00
public int RootFolderId { get; set; }
public string Folder { get; set; }
public LazyLoaded<RootFolder> RootFolder { get; set; }
//Todo: Store the root folder + folderName
public string Path { get; set; }
2013-02-13 07:32:17 +01: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 QualityProfile QualityProfile { get; set; }
public DateTime? NextAiring { get; set; }
2010-09-23 05:19:47 +02:00
}
2010-09-28 07:58:49 +02:00
}