2013-02-19 07:01:03 +01:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-27 04:19:22 +01:00
|
|
|
|
using NzbDrone.Core.Qualities;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2010-10-12 04:49:27 +02:00
|
|
|
|
|
2013-03-01 08:03:41 +01:00
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
2010-10-12 04:49:27 +02:00
|
|
|
|
{
|
2013-03-01 08:03:41 +01:00
|
|
|
|
public class EpisodeFile : ModelBase
|
2010-10-12 04:49:27 +02:00
|
|
|
|
{
|
2012-07-14 10:17:37 +02:00
|
|
|
|
public EpisodeFile()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EpisodeFile(EpisodeFile source)
|
|
|
|
|
{
|
2013-03-01 08:03:41 +01:00
|
|
|
|
Id = source.Id;
|
2012-07-14 10:17:37 +02:00
|
|
|
|
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 SeriesId { get; set; }
|
|
|
|
|
public int SeasonNumber { get; set; }
|
2010-10-12 04:49:27 +02:00
|
|
|
|
public string Path { get; set; }
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public Quality Quality { get; set; }
|
2010-10-12 04:49:27 +02:00
|
|
|
|
public bool Proper { get; set; }
|
2010-10-21 03:49:23 +02:00
|
|
|
|
public long Size { get; set; }
|
|
|
|
|
public DateTime DateAdded { get; set; }
|
2012-08-03 09:01:34 +02:00
|
|
|
|
public string SceneName { get; set; }
|
2012-08-06 08:33:07 +02:00
|
|
|
|
public string ReleaseGroup { get; set; }
|
2010-10-21 03:49:23 +02:00
|
|
|
|
|
2013-03-07 01:19:49 +01:00
|
|
|
|
public QualityModel QualityModel
|
2011-06-21 07:44:01 +02:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-02-19 07:01:03 +01:00
|
|
|
|
return new QualityModel(Quality, Proper);
|
2011-06-21 07:44:01 +02:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
2012-10-14 02:36:16 +02:00
|
|
|
|
Quality = value.Quality;
|
2011-06-21 07:44:01 +02:00
|
|
|
|
Proper = value.Proper;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-10-12 04:49:27 +02:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|