Skip to content

Instantly share code, notes, and snippets.

@changhuixu
Created July 24, 2020 01:11
Show Gist options
  • Save changhuixu/3fd8efe462226e001a2501fba1e3bf82 to your computer and use it in GitHub Desktop.
Save changhuixu/3fd8efe462226e001a2501fba1e3bf82 to your computer and use it in GitHub Desktop.
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