12 lines
249 B
C#
12 lines
249 B
C#
namespace ClearstreamAPIConnector;
|
|
|
|
internal class Token
|
|
{
|
|
public string? access_token { get; set; }
|
|
|
|
public string? token_type { get; set; }
|
|
|
|
public int expires_in { get; set; }
|
|
|
|
public string? refresh_token { get; set; }
|
|
} |