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;
|
2011-06-17 05:29:39 +02:00
|
|
|
|
using PetaPoco;
|
2010-10-12 04:49:27 +02:00
|
|
|
|
|
2010-10-21 03:49:23 +02:00
|
|
|
|
namespace NzbDrone.Core.Repository
|
2010-10-12 04:49:27 +02:00
|
|
|
|
{
|
2011-06-17 05:29:39 +02:00
|
|
|
|
[TableName("EpisodeFiles")]
|
|
|
|
|
[PrimaryKey("EpisodeFileId", autoIncrement = true)]
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public class EpisodeFile
|
2010-10-12 04:49:27 +02:00
|
|
|
|
{
|
2011-06-18 06:39:02 +02:00
|
|
|
|
public int EpisodeFileId { get; set; }
|
2011-04-10 04:44:01 +02:00
|
|
|
|
|
2011-06-18 06:39:02 +02:00
|
|
|
|
public int SeriesId { get; set; }
|
|
|
|
|
public int SeasonNumber { 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-06-17 05:29:39 +02:00
|
|
|
|
[Ignore]
|
2011-06-18 06:39:02 +02:00
|
|
|
|
public IList<Episode> Episodes { get; set; }
|
2011-02-25 02:18:22 +01:00
|
|
|
|
|
2011-06-17 05:29:39 +02:00
|
|
|
|
[Ignore]
|
2011-06-18 06:39:02 +02:00
|
|
|
|
public Series Series { get; set; }
|
2010-10-12 04:49:27 +02:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|