14 lines
282 B
C#
14 lines
282 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|