mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
23 lines
700 B
C#
23 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ServiceModel.Syndication;
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
public class Season
|
|
{
|
|
[SubSonicPrimaryKey(false)]
|
|
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.Episode> Episodes { get; private set; }
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
public virtual Series Series { get; private set; }
|
|
}
|
|
} |