mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Quality moved to ObjectDb.
This commit is contained in:
parent
065b86c159
commit
c6836e0cb1
79 changed files with 800 additions and 966 deletions
|
@ -3,13 +3,13 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Text;
|
||||
using AutoMapper;
|
||||
using NzbDrone.Core.Repository.Quality;
|
||||
using NzbDrone.Core.Qualities;
|
||||
|
||||
namespace NzbDrone.Api.Resolvers
|
||||
{
|
||||
public class QualityTypesToIntResolver : ValueResolver<QualityTypes, Int32>
|
||||
public class QualityTypesToIntResolver : ValueResolver<Quality, Int32>
|
||||
{
|
||||
protected override int ResolveCore(QualityTypes source)
|
||||
protected override int ResolveCore(Quality source)
|
||||
{
|
||||
return source.Id;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue