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
|
|
|
|
{
|
2012-07-14 10:17:37 +02:00
|
|
|
|
public EpisodeFile()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EpisodeFile(EpisodeFile source)
|
|
|
|
|
{
|
|
|
|
|
EpisodeFileId = source.EpisodeFileId;
|
|
|
|
|
SeriesId = source.SeriesId;
|
|
|
|
|
SeasonNumber = source.SeasonNumber;
|
|
|
|
|
Path = source.Path;
|
|
|
|
|
Quality = source.Quality;
|
|
|
|
|
Proper = source.Proper;
|
|
|
|
|
Size = source.Size;
|
|
|
|
|
}
|
|
|
|
|
|
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-21 07:44:01 +02:00
|
|
|
|
[Ignore]
|
|
|
|
|
public Model.Quality QualityWrapper
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new Model.Quality(Quality, Proper);
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Quality = value.QualityType;
|
|
|
|
|
Proper = value.Proper;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-12 04:49:27 +02:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|