1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-04 02:28:21 +00:00
Sonarr/NzbDrone.Core/Repository/Episode.cs

19 lines
549 B
C#
Raw Normal View History

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; }
public long SeriesId { get; set; }
2010-09-27 22:01:54 -07:00
public string Title { get; set; }
public long Season { get; set; }
2010-09-27 20:40:01 -07:00
public int EpisodeNumber { get; set; }
public DateTime AirDate { get; set; }
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
}