JwtConfig.cs 199 B

123456789
  1. using Microsoft.IdentityModel.Tokens;
  2. namespace Passwordless;
  3. public class JwtConfig()
  4. {
  5. public JsonWebKey? Key { get; set; }
  6. public string Host { get; set; } = String.Empty;
  7. }