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