kreta/Kreta.Client/ClientBase/Response/GetToken/GetTokenSuccessResponse.cs
2024-03-13 00:33:46 +01:00

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; }
}
}