1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-03 15:12:13 +02:00

46 lines
1.4 KiB
C#
Raw Normal View History

2010-10-04 23:21:18 -07:00
using System;
using System.Collections.Generic;
using NzbDrone.Core.Model;
2010-10-04 23:21:18 -07:00
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
2010-10-04 23:21:18 -07:00
{
public class Episode
2010-10-04 23:21:18 -07:00
{
[SubSonicPrimaryKey]
2010-10-04 23:21:18 -07:00
public virtual int EpisodeId { get; set; }
2011-04-09 19:44:01 -07:00
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; }
2010-10-04 23:21:18 -07:00
public string Title { get; set; }
public DateTime AirDate { get; set; }
2011-04-09 19:44:01 -07:00
[SubSonicLongString]
2010-10-04 23:21:18 -07:00
public string Overview { get; set; }
2011-04-09 19:44:01 -07:00
2010-10-04 23:21:18 -07:00
public string Language { get; set; }
public EpisodeStatusType Status { get; set; }
public DateTime? LastInfoSync { get; set; }
public DateTime? LastDiskSync { get; set; }
2010-10-04 23:21:18 -07:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Season Season { get; set; }
2010-10-11 19:49:27 -07:00
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Series Series { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual EpisodeFile EpisodeFile { get; set; }
[SubSonicToManyRelation]
2011-04-22 13:48:05 -07:00
public virtual List<History> Histories { get; protected set; }
2010-10-04 23:21:18 -07:00
}
2011-04-09 19:44:01 -07:00
}