1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Repository/Series.cs

65 lines
1.9 KiB
C#
Raw Normal View History

2010-09-23 06:19:47 +03:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using NzbDrone.Core.Repository.Quality;
2010-09-24 10:14:42 +03:00
using SubSonic.SqlGeneration.Schema;
2010-09-23 06:19:47 +03:00
namespace NzbDrone.Core.Repository
2010-09-23 06:19:47 +03:00
{
public class Series
{
[SubSonicPrimaryKey(false)]
2010-10-05 09:21:18 +03:00
public virtual int SeriesId { get; set; }
2010-09-28 08:58:49 +03:00
[SubSonicNullString]
2010-10-02 22:01:43 +03:00
public string Title { get; set; }
[SubSonicNullString]
2010-10-02 22:01:43 +03:00
public string CleanTitle { get; set; }
2010-09-28 08:58:49 +03:00
[SubSonicNullString]
2010-09-28 08:58:49 +03:00
public string Status { get; set; }
2010-09-23 06:19:47 +03:00
[SubSonicNullString]
2010-09-28 08:58:49 +03:00
public string Overview { get; set; }
[DisplayName("Air on")]
2010-09-28 08:58:49 +03:00
public DayOfWeek? AirsDayOfWeek { get; set; }
[SubSonicNullString]
2010-09-28 08:58:49 +03:00
public String AirTimes { get; set; }
[SubSonicNullString]
2010-09-28 08:58:49 +03:00
public string Language { get; set; }
2010-09-24 10:14:42 +03:00
2010-09-28 08:58:49 +03:00
public string Path { get; set; }
2010-10-02 22:01:43 +03:00
public bool Monitored { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this <see cref="Series"/> is hidden.
/// </summary>
/// <value><c>true</c> if hidden; otherwise, <c>false</c>.</value>
/// <remarks>This field will be used for shows that are pending delete or
/// new series that haven't been successfully imported</remarks>
public bool Hidden { get; set; }
public virtual int QualityProfileId { get; set; }
public bool SeasonFolder { get; set; }
public DateTime? LastInfoSync { get; set; }
public DateTime? LastDiskSync { get; set; }
[SubSonicToOneRelation(ThisClassContainsJoinKey = true, JoinKeyName = "QualityProfileId")]
public virtual QualityProfile QualityProfile { get; set; }
[SubSonicToManyRelation]
public virtual IList<Episode> Episodes { get; set; }
2010-10-05 09:21:18 +03:00
[SubSonicToManyRelation]
public virtual IList<EpisodeFile> EpisodeFiles { get; protected set; }
2010-09-23 06:19:47 +03:00
}
2010-09-28 08:58:49 +03:00
}