Class JwtConfig
- Namespace
- adas_core.Domain.Models.AppSettings
- Assembly
- adas-core.Domain.dll
Represents a JWT configuration class that extends JwtExtConfig, providing additional or specialized settings for JSON Web Token processing.
public class JwtConfig : JwtExtConfig
- Inheritance
-
JwtConfig
- Inherited Members
- Extension Methods
Remarks
This class derives from JwtExtConfig and inherits its configuration properties, allowing it to serve as a more specific or customized JWT configuration type.
Properties
ExternalProviders
public Dictionary<string, JwtExtConfig>? ExternalProviders { get; set; }
Property Value
Issuer
public string? Issuer { get; set; }
Property Value
RefreshTokenValidityInMinutes
public int RefreshTokenValidityInMinutes { get; set; }
Property Value
TokenValidityInMinutes
public int TokenValidityInMinutes { get; set; }
Property Value
ValidateIssuer
public bool ValidateIssuer { get; set; }