mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Quality now has sortable lists for configuring Profiles, saving not implemented yet.
This commit is contained in:
parent
be6bdbc483
commit
6d790f8939
9 changed files with 177 additions and 32 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue