2010-09-27 20:40:01 -07:00
|
|
|
|
using System;
|
2010-09-27 22:35:15 -07:00
|
|
|
|
using System.ServiceModel.Syndication;
|
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
2010-09-27 20:40:01 -07:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
|
{
|
|
|
|
|
public class Episode
|
|
|
|
|
{
|
2010-09-27 22:35:15 -07:00
|
|
|
|
[SubSonicPrimaryKey]
|
|
|
|
|
public string EpisodeId { get; set; }
|
2010-09-28 12:32:19 -07:00
|
|
|
|
public long SeriesId { get; set; }
|
2010-09-27 22:01:54 -07:00
|
|
|
|
public string Title { get; set; }
|
2010-09-28 12:32:19 -07:00
|
|
|
|
public long Season { get; set; }
|
2010-09-27 20:40:01 -07:00
|
|
|
|
public int EpisodeNumber { get; set; }
|
|
|
|
|
public DateTime AirDate { get; set; }
|
2010-09-28 12:32:19 -07:00
|
|
|
|
public Quality Quality { get; set; }
|
2010-09-27 22:01:54 -07:00
|
|
|
|
public bool Proper { get; set; }
|
2010-09-27 20:40:01 -07:00
|
|
|
|
}
|
2010-09-27 22:58:49 -07:00
|
|
|
|
}
|