Quality now has sortable lists for configuring Profiles, saving not implemented yet.

This commit is contained in:
markus101 2011-02-05 18:52:49 -08:00
commit 6d790f8939
9 changed files with 177 additions and 32 deletions

View file

@ -9,6 +9,7 @@ namespace NzbDrone.Core.Repository.Quality
{
[SubSonicPrimaryKey(true)]
public int ProfileId { get; set; }
[DisplayName("Name")]
public string Name { get; set; }
public bool UserProfile { get; set; } //Allows us to tell the difference between default and user profiles
@ -17,6 +18,11 @@ namespace NzbDrone.Core.Repository.Quality
[DisplayName("Allowed Qualities")]
public List<QualityTypes> Allowed { get; set; }
[SubSonicIgnore]
[DisplayName("Allowed Qualities String")]
public string AllowedString { get; set; }
[DisplayName("Cutoff")]
public QualityTypes Cutoff { get; set; }
[EditorBrowsable(EditorBrowsableState.Never)]