mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
23 lines
628 B
C#
23 lines
628 B
C#
using System;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class AuthorizationCodeRefreshResponse: IRefreshableToken
|
|
{
|
|
public string AccessToken { get; set; } = default!;
|
|
public string TokenType { get; set; } = default!;
|
|
public int ExpiresIn { get; set; }
|
|
public string Scope { get; set; } = default!;
|
|
public string RefreshToken { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Auto-Initalized to UTC Now
|
|
/// </summary>
|
|
/// <value></value>
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
public bool IsExpired { get => CreatedAt.AddSeconds(ExpiresIn) <= DateTime.UtcNow; }
|
|
}
|
|
}
|
|
|