Sonarr/NzbDrone.Core/Repository/Episode.cs

44 lines
1.3 KiB
C#
Raw Normal View History

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