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

@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Web;
using System.Web.Mvc;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository;
@ -18,5 +19,6 @@ namespace NzbDrone.Web.Models
public string Path { get; set; }
public bool HasBanner { get; set; }
public List<SeasonModel> Seasons { get; set; }
public SelectList QualitySelectList { get; set; }
}
}