JwtTokenOptions.cs 407 B

123456789101112131415
  1. using Microsoft.IdentityModel.Tokens;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace TEAMModelOS.SDK.Extension.JwtAuth.Models
  6. {
  7. public class JwtTokenOptions
  8. {
  9. public string Audience { get; set; }
  10. public RsaSecurityKey Key { get; set; }
  11. public SigningCredentials Credentials { get; set; }
  12. public string Issuer { get; set; }
  13. }
  14. }