2010-10-21 03:49:23 +02:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Model
|
|
|
|
|
{
|
|
|
|
|
public class EpisodeModel
|
|
|
|
|
{
|
|
|
|
|
public string SeriesTitle { get; set; }
|
2011-01-29 07:10:22 +01:00
|
|
|
|
public int SeriesId { get; set; }
|
2010-10-30 04:46:32 +02:00
|
|
|
|
public string EpisodeTitle { get; set; }
|
2011-01-29 07:10:22 +01:00
|
|
|
|
public int EpisodeId { get; set; }
|
2010-10-21 03:49:23 +02:00
|
|
|
|
public int SeasonNumber { get; set; }
|
|
|
|
|
public int EpisodeNumber { get; set; }
|
|
|
|
|
public QualityTypes Quality { get; set; }
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
public long Size { get; set; }
|
|
|
|
|
public bool Proper { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|