- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Extension.JwtAuth.Models
- {
- public class JwtResponse
- {
- public string access_token { get; set; }
- public string token_type { get; set; } = "Bearer";
- public string scope { get; set; }
- }
- }
|