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