You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model;
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
public class Episode
|
|
{
|
|
[SubSonicPrimaryKey]
|
|
public virtual int EpisodeId { get; set; }
|
|
|
|
public int? TvDbEpisodeId { get; set; }
|
|
|
|
public virtual int SeriesId { get; set; }
|
|
public virtual int EpisodeFileId { get; set; }
|
|
public virtual int SeasonId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public int EpisodeNumber { get; set; }
|
|
public string Title { get; set; }
|
|
public DateTime AirDate { get; set; }
|
|
|
|
[SubSonicLongString]
|
|
public string Overview { get; set; }
|
|
|
|
public string Language { get; set; }
|
|
public EpisodeStatusType Status { get; set; }
|
|
|
|
public DateTime? LastInfoSync { get; set; }
|
|
|
|
public DateTime? LastDiskSync { get; set; }
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
public virtual Season Season { get; set; }
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
public virtual Series Series { get; set; }
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
public virtual EpisodeFile EpisodeFile { get; set; }
|
|
|
|
[SubSonicToManyRelation]
|
|
public virtual List<History> Histories { get; protected set; }
|
|
|
|
}
|
|
} |