JwtResponse.cs 436 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using TEAMModelOS.SDK.Context.Constant.Common;
  5. namespace TEAMModelOS.SDK.Extension.JwtAuth.Models
  6. {
  7. public class JwtResponse
  8. {
  9. public string Access_token { get; set; }
  10. public string Token_type { get; set; } = "Bearer";
  11. public string Token_key { get; set; } =Constants.AUTHORIZATION;
  12. public string Scope { get; set; }
  13. }
  14. }