mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Quality Profile now uses jQuery UI Selectable instead of Sortable.
This commit is contained in:
parent
72e73b7513
commit
556d5d9fb3
7 changed files with 147 additions and 100 deletions
14
NzbDrone.Web/Models/QualityTypeModel.cs
Normal file
14
NzbDrone.Web/Models/QualityTypeModel.cs
Normal 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 QualityTypeModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public QualityTypes Name { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue