mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 02:52:41 +01:00
c32346e6ea
Styling works, backend saving not yet implemented.
20 lines
604 B
C#
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; }
|
|
}
|
|
} |