Bootstrap loading profiles via ajax

This commit is contained in:
Mark McDowall 2012-11-09 08:28:59 -08:00
commit 0ecbb30345
18 changed files with 92 additions and 122 deletions

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using AutoMapper;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Api.Resolvers
{
public class QualityTypesToIntResolver : ValueResolver<QualityTypes, Int32>
{
protected override int ResolveCore(QualityTypes source)
{
return source.Id;
}
}
}