1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-04 22:40:51 +00:00
Sonarr/NzbDrone.Core/Repository/Episode/Episode.cs
2010-10-04 23:21:18 -07:00

16 lines
No EOL
446 B
C#

using System;
using NzbDrone.Core.Repository.Quality;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository.Episode
{
public class Episode
{
public virtual int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
public virtual Series Series { get; private set; }
}
}