2010-10-21 01:49:23 +00:00
|
|
|
|
using System;
|
2011-02-22 06:12:53 +00:00
|
|
|
|
using System.Collections.Generic;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2010-10-12 02:49:27 +00:00
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
|
|
2010-10-21 01:49:23 +00:00
|
|
|
|
namespace NzbDrone.Core.Repository
|
2010-10-12 02:49:27 +00:00
|
|
|
|
{
|
2010-10-24 07:46:58 +00:00
|
|
|
|
public class EpisodeFile
|
2010-10-12 02:49:27 +00:00
|
|
|
|
{
|
|
|
|
|
[SubSonicPrimaryKey]
|
2011-02-24 00:40:11 +00:00
|
|
|
|
public virtual int EpisodeFileId { get; set; }
|
2011-02-25 01:18:22 +00:00
|
|
|
|
public virtual 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; }
|
2010-10-21 01:49:23 +00:00
|
|
|
|
public long Size { get; set; }
|
|
|
|
|
public DateTime DateAdded { get; set; }
|
|
|
|
|
|
2011-02-22 06:12:53 +00:00
|
|
|
|
[SubSonicToManyRelation]
|
2011-02-23 06:23:59 +00:00
|
|
|
|
public virtual List<Episode> Episodes { get; private set; }
|
2011-02-25 01:18:22 +00:00
|
|
|
|
|
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
|
|
|
public virtual Series Series { get; private set; }
|
2010-10-12 02:49:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|