1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/MediaFiles/EpisodeFile.cs

50 lines
1.3 KiB
C#
Raw Normal View History

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