1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 08:21:46 +02:00
Radarr/NzbDrone.Core/Entities/Season.cs

21 lines
650 B
C#
Raw Normal View History

using System.Collections.Generic;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Entities
{
public class Season
{
[SubSonicPrimaryKey(false)]
2010-10-05 08:21:18 +02:00
public virtual long SeasonId { get; set; }
public long SeriesId { get; set; }
public int SeasonNumber { get; set; }
public bool Monitored { get; set; }
public string Folder { get; set; }
[SubSonicToManyRelation]
public virtual List<Episode.BasicEpisode> Episodes { get; private set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
2010-10-05 08:21:18 +02:00
public virtual Series Series { get; private set; }
}
}