1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 16:32:56 +01:00
Sonarr/NzbDrone.Core/Tv/Episode.cs

34 lines
980 B
C#
Raw Normal View History

2013-03-06 21:30:53 +01:00
using System;
using Marr.Data;
using NzbDrone.Core.Datastore;
2013-03-01 08:03:41 +01:00
using NzbDrone.Core.MediaFiles;
2013-03-24 05:16:00 +01:00
namespace NzbDrone.Core.Tv
2010-10-05 08:21:18 +02:00
{
public class Episode : ModelBase
2010-10-05 08:21:18 +02:00
{
2013-02-25 01:00:17 +01:00
public int TvDbEpisodeId { get; set; }
public int SeriesId { get; set; }
2013-04-20 02:46:09 +02:00
public int EpisodeFileId { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public string Title { get; set; }
2011-06-23 08:56:17 +02:00
public DateTime? AirDate { get; set; }
public string Overview { get; set; }
public Boolean Monitored { get; set; }
public Nullable<Int32> AbsoluteEpisodeNumber { get; set; }
2012-10-17 07:00:28 +02:00
public int SceneSeasonNumber { get; set; }
public int SceneEpisodeNumber { get; set; }
2013-05-02 07:50:34 +02:00
public String SeriesTitle { get; private set; }
public LazyLoaded<EpisodeFile> EpisodeFile { get; set; }
2013-07-08 08:39:19 +02:00
public Boolean HasFile
{
get { return EpisodeFileId > 0; }
}
2010-10-05 08:21:18 +02:00
}
2011-04-10 04:44:01 +02:00
}