29 lines
749 B
C#
29 lines
749 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GMCabsDriverAssistantSolution.Models.Rydo
|
|
{
|
|
public class EftposLoginResponse
|
|
{
|
|
#region Constants
|
|
public const string RYDO_ACCESS_TOKEN = "RydoAccessToken";
|
|
public const string RYDO_TOKEN_TYPE = "RydoTokenType";
|
|
#endregion
|
|
|
|
#region Properties
|
|
[JsonPropertyName("access_token")]
|
|
public string AccessToken { get; set; }
|
|
|
|
[JsonPropertyName("token_type")]
|
|
public string TokenType { get; set; }
|
|
|
|
[JsonPropertyName("expires_in")]
|
|
public int ExpiresIn { get; set; }
|
|
#endregion
|
|
}
|
|
}
|