tbf/RestClient/Models/CustomJwt.cs

14 lines
282 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace RestClient.Models
{
public class CustomJwt
{
public string access_token { get; set; }
public string token_type { get; set; }
public int expires_in { get; set; }
}
}