1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-06 11:40:00 +00:00
Sonarr/NzbDrone.Tvdb.Offline/NzbDrone.Tvdb.Offline/Series.cs
2013-02-15 16:52:40 -08:00

31 lines
No EOL
639 B
C#

using System;
namespace NzbDrone.Tvdb.Offline
{
public class Series
{
public virtual int SeriesId { get; set; }
public string Title { get; set; }
public string CleanTitle { get; set; }
public string Status { get; set; }
public Boolean? Active { get; set; }
public string Overview { get; set; }
public string AirsDayOfWeek { get; set; }
public int? WeekDay { get; set; }
public String AirTimes { get; set; }
public int? RateCount { get; set; }
public decimal? Rating { get; set; }
public String Path { get; set; }
}
}