mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
Add RefreshToken to AuthorizationCodeRefreshResponse
This commit is contained in:
parent
4340515471
commit
9ca573f748
@ -2,12 +2,13 @@ using System;
|
|||||||
|
|
||||||
namespace SpotifyAPI.Web
|
namespace SpotifyAPI.Web
|
||||||
{
|
{
|
||||||
public class AuthorizationCodeRefreshResponse: IUserToken
|
public class AuthorizationCodeRefreshResponse: IRefreshableToken
|
||||||
{
|
{
|
||||||
public string AccessToken { get; set; } = default!;
|
public string AccessToken { get; set; } = default!;
|
||||||
public string TokenType { get; set; } = default!;
|
public string TokenType { get; set; } = default!;
|
||||||
public int ExpiresIn { get; set; }
|
public int ExpiresIn { get; set; }
|
||||||
public string Scope { get; set; } = default!;
|
public string Scope { get; set; } = default!;
|
||||||
|
public string RefreshToken { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Auto-Initalized to UTC Now
|
/// Auto-Initalized to UTC Now
|
||||||
|
Loading…
Reference in New Issue
Block a user