1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-12 22:12:38 +01:00
Radarr/NzbDrone.Core/Entities/Episode/EpisodeInfo.cs

22 lines
656 B
C#
Raw Normal View History

2010-10-05 08:21:18 +02:00
using System;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Entities.Episode
2010-10-05 08:21:18 +02:00
{
[SubSonicTableNameOverride("EpisodeInfo")]
public class EpisodeInfo : BasicEpisode
2010-10-05 08:21:18 +02:00
{
[SubSonicPrimaryKey(false)]
public virtual int EpisodeId { get; set; }
public int SeasonId { get; set; }
public string Title { get; set; }
public DateTime AirDate { get; set; }
[SubSonicLongString]
public string Overview { get; set; }
public string Language { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Season Season { get; set; }
}
}