16 lines
426 B
C#
16 lines
426 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Kreta.Client.ClientBase.Response
|
|
{
|
|
internal class GetTokenSuccessResponse
|
|
{
|
|
[JsonProperty(PropertyName = "access_token")]
|
|
public string AccessToken { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "expires_in")]
|
|
public int ExpiresIn { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "token_type")]
|
|
public string TokenType { get; set; }
|
|
}
|
|
}
|