mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
22 lines
593 B
C#
22 lines
593 B
C#
|
using System;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class PKCETokenResponse
|
||
|
{
|
||
|
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; }
|
||
|
}
|
||
|
}
|