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