Radarr/NzbDrone.Core/Repository/Series.cs

51 lines
1.4 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using NzbDrone.Core.Repository.Quality;
2010-09-24 07:14:42 +00:00
using SubSonic.SqlGeneration.Schema;
2010-09-23 03:19:47 +00:00
namespace NzbDrone.Core.Repository
2010-09-23 03:19:47 +00:00
{
public class Series
{
[SubSonicPrimaryKey(false)]
2010-10-05 06:21:18 +00:00
public virtual int SeriesId { get; set; }
2010-09-28 05:58:49 +00:00
2010-10-02 19:01:43 +00:00
public string Title { get; set; }
public string CleanTitle { get; set; }
2010-09-28 05:58:49 +00:00
[SubSonicNullString]
2010-09-28 05:58:49 +00:00
public string Status { get; set; }
2010-09-23 03:19:47 +00:00
2010-09-24 07:14:42 +00:00
[SubSonicLongString]
2010-09-28 05:58:49 +00:00
public string Overview { get; set; }
[DisplayName("Air on")]
2010-09-28 05:58:49 +00:00
public DayOfWeek? AirsDayOfWeek { get; set; }
public String AirTimes { get; set; }
public string Language { get; set; }
2010-09-24 07:14:42 +00:00
2010-09-28 05:58:49 +00:00
public string Path { get; set; }
2010-10-02 19:01:43 +00:00
public bool Monitored { get; set; }
public virtual int QualityProfileId { get; set; }
public bool SeasonFolder { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true, JoinKeyName = "QualityProfileId")]
public virtual QualityProfile QualityProfile { get; private set; }
[SubSonicToManyRelation]
public virtual List<Season> Seasons { get; private set; }
[SubSonicToManyRelation]
public virtual List<Episode> Episodes { get; private set; }
2010-10-05 06:21:18 +00:00
[SubSonicToManyRelation]
public virtual List<EpisodeFile> EpisodeFiles { get; private set; }
2010-09-23 03:19:47 +00:00
}
2010-09-28 05:58:49 +00:00
}