JwtResponse.cs 317 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Extension.JwtAuth.Models
  5. {
  6. public class JwtResponse
  7. {
  8. public string access_token { get; set; }
  9. public string token_type { get; set; } = "Bearer";
  10. public string scope { get; set; }
  11. }
  12. }