mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
Change episode file quality
New: Ability to change the quality of an episode in the database
This commit is contained in:
parent
d3ccd70470
commit
a7fd486b03
12 changed files with 143 additions and 8 deletions
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue