1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Web/Models/EpisodeModel.cs

19 lines
518 B
C#
Raw Normal View History

using System;
2011-05-22 20:29:10 +03:00
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; }
2011-05-22 20:29:10 +03:00
public String Status { get; set; }
public DateTime AirDate { get; set; }
2011-03-31 05:56:00 +03:00
public String Quality { get; set; }
}
}