Lidarr/NzbDrone.Core/Repository/Episode.cs

19 lines
549 B
C#
Raw Normal View History

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