1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-11 13:32:42 +01:00
Radarr/NzbDrone.Core/Repository/Episode.cs

30 lines
934 B
C#
Raw Normal View History

2010-10-05 08:21:18 +02:00
using System;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
2010-10-05 08:21:18 +02:00
{
public class Episode
2010-10-05 08:21:18 +02:00
{
[SubSonicPrimaryKey(false)]
public virtual int EpisodeId { get; set; }
public virtual int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
2010-10-05 08:21:18 +02:00
public int SeasonId { get; set; }
public string Title { get; set; }
public DateTime AirDate { get; set; }
public string Overview { get; set; }
public string Language { get; set; }
[SubSonicNullString]
public string Path { get; set; }
public long? Size { get; set; }
2010-10-05 08:21:18 +02:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Season Season { get; set; }
2010-10-12 04:49:27 +02:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Series Series { get; private set; }
2010-10-05 08:21:18 +02:00
}
}