2012-12-18 06:41:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Model.TvRage
|
|
|
|
|
{
|
|
|
|
|
public class TvRageSeries
|
|
|
|
|
{
|
|
|
|
|
public int ShowId { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Link { get; set; }
|
|
|
|
|
public int Seasons { get; set; }
|
|
|
|
|
public int Started { get; set; }
|
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
|
public DateTime Ended { get; set; }
|
|
|
|
|
public string OriginCountry { get; set; }
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
public int RunTime { get; set; }
|
|
|
|
|
public string Network { get; set; }
|
|
|
|
|
public DateTime AirTime { get; set; }
|
2012-12-19 16:41:51 +00:00
|
|
|
|
public DayOfWeek? AirDay { get; set; }
|
2012-12-18 06:41:08 +00:00
|
|
|
|
public int UtcOffset { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|