You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
22 lines
656 B
C#
22 lines
656 B
C#
using System;
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Entities.Episode
|
|
{
|
|
[SubSonicTableNameOverride("EpisodeInfo")]
|
|
public class EpisodeInfo : BasicEpisode
|
|
{
|
|
[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; }
|
|
}
|
|
}
|