2010-10-05 06:21:18 +00:00
|
|
|
|
using System;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
using System.Collections.Generic;
|
2010-10-30 02:46:32 +00:00
|
|
|
|
using System.Web.Script.Serialization;
|
2010-10-05 06:21:18 +00:00
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
|
namespace NzbDrone.Core.Repository
|
2010-10-05 06:21:18 +00:00
|
|
|
|
{
|
2010-10-21 01:49:23 +00:00
|
|
|
|
public class Episode
|
2010-10-05 06:21:18 +00:00
|
|
|
|
{
|
|
|
|
|
[SubSonicPrimaryKey(false)]
|
|
|
|
|
public virtual int EpisodeId { get; set; }
|
2010-10-21 01:49:23 +00:00
|
|
|
|
public virtual int SeriesId { get; set; }
|
|
|
|
|
public int SeasonNumber { get; set; }
|
|
|
|
|
public int EpisodeNumber { get; set; }
|
2010-10-05 06:21:18 +00:00
|
|
|
|
public int SeasonId { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public DateTime AirDate { get; set; }
|
2011-01-29 06:10:22 +00:00
|
|
|
|
[SubSonicLongString]
|
2010-10-05 06:21:18 +00:00
|
|
|
|
public string Overview { get; set; }
|
|
|
|
|
public string Language { get; set; }
|
2010-10-21 01:49:23 +00:00
|
|
|
|
|
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)]
|
2010-10-21 01:49:23 +00:00
|
|
|
|
public virtual Series Series { get; private set; }
|
2010-10-24 07:46:58 +00:00
|
|
|
|
|
|
|
|
|
[SubSonicToManyRelation]
|
|
|
|
|
public virtual List<EpisodeFile> Files { get; private set; }
|
2011-01-29 06:10:22 +00:00
|
|
|
|
|
|
|
|
|
[SubSonicToManyRelation]
|
|
|
|
|
public virtual List<History> Histories { get; private set; }
|
2010-10-05 06:21:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|