1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 08:51:43 +02:00
Radarr/NzbDrone.Web/Models/EpisodeModel.cs
2011-05-22 10:29:10 -07:00

19 lines
518 B
C#

using System;
using NzbDrone.Core.Model;
namespace NzbDrone.Web.Models
{
public class EpisodeModel
{
public string Title { get; set; }
public int EpisodeId { get; set; }
public int EpisodeNumber { get; set; }
public int SeasonNumber { get; set; }
public string Overview { get; set; }
public string Path { get; set; }
public String Status { get; set; }
public DateTime AirDate { get; set; }
public String Quality { get; set; }
}
}