Sonarr/NzbDrone.Core/Repository/Episode.cs

31 lines
999 B
C#
Raw Normal View History

2010-10-05 06:21:18 +00:00
using System;
using System.Collections.Generic;
using System.Web.Script.Serialization;
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; }
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; }
public string Overview { get; set; }
public string Language { 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; private set; }
[SubSonicToManyRelation]
public virtual List<EpisodeFile> Files { get; private set; }
2010-10-05 06:21:18 +00:00
}
}