mirror of https://github.com/Radarr/Radarr
25 lines
725 B
C#
25 lines
725 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using SubSonic.SqlGeneration.Schema;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Repository.Episode
|
|||
|
{
|
|||
|
[SubSonicTableNameOverride("EpisodeInfo")]
|
|||
|
public class EpisodeInfo : Episode
|
|||
|
{
|
|||
|
[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; }
|
|||
|
}
|
|||
|
}
|