mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
14 lines
299 B
C#
14 lines
299 B
C#
using System;
|
|
using AutoMapper;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Api.Resolvers
|
|
{
|
|
public class QualityTypesToIntResolver : ValueResolver<Quality, Int32>
|
|
{
|
|
protected override int ResolveCore(Quality source)
|
|
{
|
|
return source.Id;
|
|
}
|
|
}
|
|
} |