Created
July 24, 2020 01:11
-
-
Save changhuixu/3fd8efe462226e001a2501fba1e3bf82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class JwtTokenConfig | |
{ | |
public string Secret { get; set; } | |
public string Issuer { get; set; } | |
public string Audience { get; set; } | |
public int AccessTokenExpiration { get; set; } | |
public int RefreshTokenExpiration { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment