IdentityShroud/IdentityShroud.Core/EFCore/Converters/JwtSigAlgNameConverter.cs

5 lines
211 B
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
namespace IdentityShroud.Core.EFCore;
public class JwtSigAlgNameConverter() : ValueConverter<JwtSigAlgName, string>(j => j.ToString(), s => new(s));