1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-31 11:24:23 +02:00

61 lines
1.6 KiB
C#
Raw Normal View History

2010-09-22 20:19:47 -07:00
using System;
using System.ComponentModel;
using NzbDrone.Core.Repository.Quality;
2011-06-14 19:31:41 -07:00
using PetaPoco;
2010-09-22 20:19:47 -07:00
namespace NzbDrone.Core.Repository
2010-09-22 20:19:47 -07:00
{
2011-06-16 19:27:10 -07:00
[PrimaryKey("SeriesId", autoIncrement = false)]
2010-09-22 20:19:47 -07:00
public class Series
{
2010-10-04 23:21:18 -07:00
public virtual int SeriesId { get; set; }
2010-09-27 22:58:49 -07:00
2010-10-02 12:01:43 -07:00
public string Title { get; set; }
public string CleanTitle { get; set; }
2010-09-27 22:58:49 -07:00
public string Status { get; set; }
2010-09-22 20:19:47 -07:00
2010-09-27 22:58:49 -07:00
public string Overview { get; set; }
[DisplayName("Air on")]
2010-09-27 22:58:49 -07:00
public DayOfWeek? AirsDayOfWeek { get; set; }
public String AirTimes { get; set; }
public string Language { get; set; }
2010-09-24 00:14:42 -07:00
2010-09-27 22:58:49 -07:00
public string Path { get; set; }
2010-10-02 12:01:43 -07:00
public bool Monitored { get; set; }
public virtual int QualityProfileId { get; set; }
public bool SeasonFolder { get; set; }
public DateTime? LastInfoSync { get; set; }
public DateTime? LastDiskSync { 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>
2011-06-14 19:31:41 -07:00
[Ignore]
public bool Hidden { get; set; }
[ResultColumn]
public QualityProfile QualityProfile { get; set; }
[ResultColumn]
public int EpisodeCount { get; set; }
[ResultColumn]
public int EpisodeFileCount { get; set; }
[ResultColumn]
public int SeasonCount { get; set; }
2010-09-22 20:19:47 -07:00
}
2010-09-27 22:58:49 -07:00
}