1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Web/Models/EpisodeModel.cs
Mark McDowall c32346e6ea New series ignore editor on Series/Details.
Styling works, backend saving not yet implemented.
2011-08-03 00:26:39 -07:00

20 lines
604 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 EpisodeFileId { 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 string AirDate { get; set; }
public String Quality { get; set; }
public bool Ignored { get; set; }
}
}