Change episode file quality

New: Ability to change the quality of an episode in the database
This commit is contained in:
Mark McDowall 2012-09-03 16:26:52 -07:00
parent d3ccd70470
commit a7fd486b03
12 changed files with 143 additions and 8 deletions

View file

@ -1,5 +1,6 @@
using System;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Web.Models
{
@ -7,6 +8,7 @@ namespace NzbDrone.Web.Models
{
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; }
@ -14,6 +16,7 @@ namespace NzbDrone.Web.Models
public String Status { get; set; }
public string AirDate { get; set; }
public String Quality { get; set; }
public int QualityId { get; set; }
public bool Ignored { get; set; }
}
}