2010-09-22 20:19:47 -07:00
|
|
|
|
using System;
|
2010-09-30 17:09:22 -07:00
|
|
|
|
using System.Collections.Generic;
|
2011-03-30 18:42:27 -07:00
|
|
|
|
using System.ComponentModel;
|
2011-02-14 19:48:39 -08:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-06-14 19:31:41 -07:00
|
|
|
|
using PetaPoco;
|
2010-09-24 00:14:42 -07:00
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
2010-09-22 20:19:47 -07:00
|
|
|
|
|
2010-10-20 18:49:23 -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-09-30 17:09:22 -07:00
|
|
|
|
[SubSonicPrimaryKey(false)]
|
2010-10-04 23:21:18 -07:00
|
|
|
|
public virtual int SeriesId { get; set; }
|
2010-09-27 22:58:49 -07:00
|
|
|
|
|
2011-03-31 23:36:34 -07:00
|
|
|
|
[SubSonicNullString]
|
2010-10-02 12:01:43 -07:00
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
2011-03-31 23:36:34 -07:00
|
|
|
|
[SubSonicNullString]
|
2010-10-02 12:01:43 -07:00
|
|
|
|
public string CleanTitle { get; set; }
|
2010-09-27 22:58:49 -07:00
|
|
|
|
|
2010-10-20 18:49:23 -07:00
|
|
|
|
[SubSonicNullString]
|
2010-09-27 22:58:49 -07:00
|
|
|
|
public string Status { get; set; }
|
2010-09-22 20:19:47 -07:00
|
|
|
|
|
2011-03-31 23:36:34 -07:00
|
|
|
|
[SubSonicNullString]
|
2010-09-27 22:58:49 -07:00
|
|
|
|
public string Overview { get; set; }
|
|
|
|
|
|
2011-03-30 18:42:27 -07:00
|
|
|
|
[DisplayName("Air on")]
|
2010-09-27 22:58:49 -07:00
|
|
|
|
public DayOfWeek? AirsDayOfWeek { get; set; }
|
|
|
|
|
|
2011-03-31 23:36:34 -07:00
|
|
|
|
[SubSonicNullString]
|
2010-09-27 22:58:49 -07:00
|
|
|
|
public String AirTimes { get; set; }
|
|
|
|
|
|
2011-03-31 23:36:34 -07:00
|
|
|
|
[SubSonicNullString]
|
2010-09-27 22:58:49 -07:00
|
|
|
|
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-09-30 17:09:22 -07:00
|
|
|
|
|
2010-10-02 12:01:43 -07:00
|
|
|
|
public bool Monitored { get; set; }
|
|
|
|
|
|
2011-05-20 17:23:49 -07:00
|
|
|
|
|
|
|
|
|
/// <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]
|
2011-05-20 17:23:49 -07:00
|
|
|
|
public bool Hidden { get; set; }
|
|
|
|
|
|
2011-03-30 18:42:27 -07:00
|
|
|
|
public virtual int QualityProfileId { get; set; }
|
2011-02-16 00:16:14 -08:00
|
|
|
|
|
2011-02-24 23:20:24 -08:00
|
|
|
|
public bool SeasonFolder { get; set; }
|
|
|
|
|
|
2011-03-31 23:36:34 -07:00
|
|
|
|
public DateTime? LastInfoSync { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? LastDiskSync { get; set; }
|
|
|
|
|
|
2011-03-30 18:42:27 -07:00
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true, JoinKeyName = "QualityProfileId")]
|
2011-06-14 19:31:41 -07:00
|
|
|
|
[Ignore]
|
2011-04-25 10:48:16 -07:00
|
|
|
|
public virtual QualityProfile QualityProfile { get; set; }
|
2011-01-28 22:10:22 -08:00
|
|
|
|
|
2010-09-30 17:09:22 -07:00
|
|
|
|
[SubSonicToManyRelation]
|
2011-06-14 19:31:41 -07:00
|
|
|
|
[Ignore]
|
2011-05-20 17:23:49 -07:00
|
|
|
|
public virtual IList<Episode> Episodes { get; set; }
|
2010-10-04 23:21:18 -07:00
|
|
|
|
|
2010-10-24 00:46:58 -07:00
|
|
|
|
[SubSonicToManyRelation]
|
2011-06-14 19:31:41 -07:00
|
|
|
|
[Ignore]
|
2011-05-20 17:23:49 -07:00
|
|
|
|
public virtual IList<EpisodeFile> EpisodeFiles { get; protected set; }
|
2010-09-22 20:19:47 -07:00
|
|
|
|
}
|
2010-09-27 22:58:49 -07:00
|
|
|
|
}
|