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