1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00

41 lines
1.3 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(false)]
public virtual int EpisodeId { 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; }
[SubSonicLongString]
2010-10-04 23:21:18 -07:00
public string Overview { get; set; }
public string Language { get; set; }
public EpisodeStatusType Status { get; set; }
public DayOfWeek? LastInfoSync { get; set; }
public DayOfWeek? 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; private set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual EpisodeFile EpisodeFile { get; private set; }
[SubSonicToManyRelation]
public virtual List<History> Histories { get; private set; }
2010-10-04 23:21:18 -07:00
}
}