2010-10-21 04:49:23 +03:00
|
|
|
using System;
|
2011-02-22 08:12:53 +02:00
|
|
|
using System.Collections.Generic;
|
2010-10-21 04:49:23 +03:00
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2010-10-12 05:49:27 +03:00
|
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
|
2010-10-21 04:49:23 +03:00
|
|
|
namespace NzbDrone.Core.Repository
|
2010-10-12 05:49:27 +03:00
|
|
|
{
|
2010-10-24 10:46:58 +03:00
|
|
|
public class EpisodeFile
|
2010-10-12 05:49:27 +03:00
|
|
|
{
|
|
|
|
[SubSonicPrimaryKey]
|
2011-02-24 02:40:11 +02:00
|
|
|
public virtual int EpisodeFileId { get; set; }
|
2011-04-10 05:44:01 +03:00
|
|
|
|
2011-02-25 03:18:22 +02:00
|
|
|
public virtual int SeriesId { get; set; }
|
2010-10-12 05:49:27 +03:00
|
|
|
public string Path { get; set; }
|
|
|
|
public QualityTypes Quality { get; set; }
|
|
|
|
public bool Proper { get; set; }
|
2010-10-21 04:49:23 +03:00
|
|
|
public long Size { get; set; }
|
|
|
|
public DateTime DateAdded { get; set; }
|
|
|
|
|
2011-02-22 08:12:53 +02:00
|
|
|
[SubSonicToManyRelation]
|
2011-05-21 03:23:49 +03:00
|
|
|
public virtual IList<Episode> Episodes { get; private set; }
|
2011-02-25 03:18:22 +02:00
|
|
|
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
|
|
public virtual Series Series { get; private set; }
|
2010-10-12 05:49:27 +03:00
|
|
|
}
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|