Sonarr/NzbDrone.Core/Repository/EpisodeFile.cs

23 lines
675 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Repository.Quality;
2010-10-12 02:49:27 +00:00
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
2010-10-12 02:49:27 +00:00
{
public class EpisodeFile
2010-10-12 02:49:27 +00:00
{
[SubSonicPrimaryKey]
public virtual int FileId { get; set; }
public int EpisodeId { get; set; }
public int SeriesId { get; set; }
2010-10-12 02:49:27 +00:00
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; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Episode Episode { get; set; }
2010-10-12 02:49:27 +00:00
}
}