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

5 lines
No EOL
211 B
C#

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