14 lines
336 B
C#
14 lines
336 B
C#
using AutoMapper;
|
|
using DigitalData.Core.Abstractions.Security;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
|
|
namespace DigitalData.Core.Security.Config
|
|
{
|
|
public class MappingProfile : Profile
|
|
{
|
|
public MappingProfile()
|
|
{
|
|
CreateMap<IAsymmetricTokenDescriptor, SecurityTokenDescriptor>();
|
|
}
|
|
}
|
|
} |