Lidarr/NzbDrone.Core/Repository/Series.cs

26 lines
557 B
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
2010-09-24 07:14:42 +00:00
using SubSonic.SqlGeneration.Schema;
2010-09-23 03:19:47 +00:00
namespace NzbDrone.Core.Repository
{
public class Series
{
2010-09-24 07:14:42 +00:00
[SubSonicPrimaryKey]
2010-09-28 05:58:49 +00:00
public string TvdbId { get; set; }
public string SeriesName { get; set; }
public string Status { get; set; }
2010-09-23 03:19:47 +00:00
2010-09-24 07:14:42 +00:00
[SubSonicLongString]
2010-09-28 05:58:49 +00:00
public string Overview { get; set; }
public DayOfWeek? AirsDayOfWeek { get; set; }
public String AirTimes { get; set; }
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-09-23 03:19:47 +00:00
}
2010-09-28 05:58:49 +00:00
}