mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04: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; }
|
|
}
|
|
} |