You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
639 B
31 lines
639 B
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; }
|
|
}
|
|
} |