2010-10-21 01:49:23 +00: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 06:10:22 +00:00
|
|
|
|
public int SeriesId { get; set; }
|
2010-10-30 02:46:32 +00:00
|
|
|
|
public string EpisodeTitle { get; set; }
|
2011-01-29 06:10:22 +00:00
|
|
|
|
public int EpisodeId { get; set; }
|
2010-10-21 01:49:23 +00: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; }
|
|
|
|
|
}
|
|
|
|
|
}
|