1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Core/Repository/Series.cs

60 lines
876 B
C#
Raw Normal View History

2010-09-23 05:19:47 +02:00
using System;
2010-09-24 09:14:42 +02:00
using SubSonic.SqlGeneration.Schema;
2010-09-23 05:19:47 +02:00
namespace NzbDrone.Core.Repository
{
public class Series
{
2010-09-24 09:14:42 +02:00
[SubSonicPrimaryKey]
public int TvdbId
2010-09-23 05:19:47 +02:00
{
get;
set;
}
public string SeriesName
{
get;
set;
}
public string Status
{
get;
set;
}
2010-09-24 09:14:42 +02:00
[SubSonicLongString]
2010-09-23 05:19:47 +02:00
public string Overview
{
get;
set;
}
public DayOfWeek? AirsDayOfWeek
{
get;
set;
}
public string AirTimes
{
get;
set;
}
public string Language
{
get;
set;
}
public string Path
{
get;
set;
}
2010-09-24 09:14:42 +02:00
2010-09-23 05:19:47 +02:00
}
}