mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
3dbb38b54f
Season Grid now shows episodeFile quality.
32 lines
966 B
C#
32 lines
966 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
using PetaPoco;
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
[TableName("EpisodeFiles")]
|
|
[PrimaryKey("EpisodeFileId", autoIncrement = true)]
|
|
public class EpisodeFile
|
|
{
|
|
[SubSonicPrimaryKey]
|
|
public virtual int EpisodeFileId { get; set; }
|
|
|
|
public virtual int SeriesId { get; set; }
|
|
public virtual int SeasonNumber { get; set; }
|
|
public string Path { get; set; }
|
|
public QualityTypes Quality { get; set; }
|
|
public bool Proper { get; set; }
|
|
public long Size { get; set; }
|
|
public DateTime DateAdded { get; set; }
|
|
|
|
[SubSonicToManyRelation]
|
|
[Ignore]
|
|
public virtual IList<Episode> Episodes { get; set; }
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
[Ignore]
|
|
public virtual Series Series { get; set; }
|
|
}
|
|
} |