Returned missing Graphics, CSS and JavaScript files.

Settings Sub-menu updated to include Quality link.
Quality config page started.
This commit is contained in:
markus101 2011-02-02 18:49:52 -08:00
commit 9f0e512f5f
71 changed files with 1708 additions and 49 deletions

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Web.Models
{
public class QualityModel
{
public List<QualityProfile> Profiles { get; set; }
public List<QualityProfile> UserProfiles { get; set; }
}
}