10 lines
203 B
C#
10 lines
203 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Kreta.Client.ClientBase.Response
|
|
{
|
|
internal class GetTokenFailureResponse
|
|
{
|
|
[JsonProperty("error")]
|
|
public string Error { get; set; }
|
|
}
|
|
}
|