mirror of
https://github.com/Readarr/Readarr
synced 2025-12-30 20:25:18 +01:00
14 lines
No EOL
395 B
C#
14 lines
No EOL
395 B
C#
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Entities.Episode
|
|
{
|
|
public class BasicEpisode
|
|
{
|
|
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; }
|
|
}
|
|
} |