mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
33b09567ce
Fixed Relationships between History and Episode/Indexer. Indexer now uses int as ID, string caused issues. Get single Indexer by ID.
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model;
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
public class Episode
|
|
{
|
|
[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; }
|
|
public string Title { get; set; }
|
|
public DateTime AirDate { get; set; }
|
|
[SubSonicLongString]
|
|
public string Overview { get; set; }
|
|
public string Language { get; set; }
|
|
public EpisodeStatusType Status { get; set; }
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
public virtual Season Season { get; set; }
|
|
|
|
[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; }
|
|
}
|
|
}
|