2010-09-23 05:19:47 +02:00
|
|
|
|
using System;
|
2010-10-01 02:09:22 +02:00
|
|
|
|
using System.Collections.Generic;
|
2010-09-24 09:14:42 +02:00
|
|
|
|
using SubSonic.SqlGeneration.Schema;
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
2010-10-21 03:49:23 +02:00
|
|
|
|
namespace NzbDrone.Core.Repository
|
2010-09-23 05:19:47 +02:00
|
|
|
|
{
|
|
|
|
|
public class Series
|
|
|
|
|
{
|
2010-10-01 02:09:22 +02:00
|
|
|
|
[SubSonicPrimaryKey(false)]
|
2010-10-05 08:21:18 +02:00
|
|
|
|
public virtual int SeriesId { get; set; }
|
2010-09-28 07:58:49 +02:00
|
|
|
|
|
2010-10-02 21:01:43 +02:00
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CleanTitle { get; set; }
|
2010-09-28 07:58:49 +02:00
|
|
|
|
|
2010-10-21 03:49:23 +02:00
|
|
|
|
[SubSonicNullString]
|
2010-09-28 07:58:49 +02:00
|
|
|
|
public string Status { get; set; }
|
2010-09-23 05:19:47 +02:00
|
|
|
|
|
2010-09-24 09:14:42 +02:00
|
|
|
|
[SubSonicLongString]
|
2010-09-28 07:58:49 +02:00
|
|
|
|
public string Overview { get; set; }
|
|
|
|
|
|
|
|
|
|
public DayOfWeek? AirsDayOfWeek { get; set; }
|
|
|
|
|
|
|
|
|
|
public String AirTimes { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Language { get; set; }
|
2010-09-24 09:14:42 +02:00
|
|
|
|
|
2010-09-28 07:58:49 +02:00
|
|
|
|
public string Path { get; set; }
|
2010-10-01 02:09:22 +02:00
|
|
|
|
|
2010-10-02 21:01:43 +02:00
|
|
|
|
public bool Monitored { get; set; }
|
|
|
|
|
|
2010-10-01 02:09:22 +02:00
|
|
|
|
[SubSonicToManyRelation]
|
|
|
|
|
public virtual List<Season> Seasons { get; private set; }
|
|
|
|
|
|
|
|
|
|
[SubSonicToManyRelation]
|
2010-10-21 03:49:23 +02:00
|
|
|
|
public virtual List<Episode> Episodes { get; private set; }
|
2010-10-05 08:21:18 +02:00
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
[SubSonicToManyRelation]
|
|
|
|
|
public virtual List<EpisodeFile> Files { get; private set; }
|
2010-09-23 05:19:47 +02:00
|
|
|
|
}
|
2010-09-28 07:58:49 +02:00
|
|
|
|
}
|