2010-09-23 06:19:47 +03:00
|
|
|
using System;
|
2010-09-24 10:14:42 +03:00
|
|
|
using SubSonic.SqlGeneration.Schema;
|
2010-09-23 06:19:47 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
{
|
|
|
|
public class Series
|
|
|
|
{
|
2010-09-24 10:14:42 +03:00
|
|
|
[SubSonicPrimaryKey]
|
2010-09-27 03:21:38 +03:00
|
|
|
public string TvdbId
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string SeriesName
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Status
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
2010-09-24 10:14:42 +03:00
|
|
|
[SubSonicLongString]
|
2010-09-23 06:19:47 +03:00
|
|
|
public string Overview
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
|
|
|
public DayOfWeek? AirsDayOfWeek
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
2010-09-28 06:04:39 +03:00
|
|
|
public String AirTimes
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Language
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Path
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
2010-09-24 10:14:42 +03:00
|
|
|
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
|
|
|
}
|