1
0
mirror of https://github.com/Sarsoo/Spotify.NET.git synced 2025-01-23 03:22:42 +00:00
Spotify.NET/SpotifyAPI.Web/Models/Response/PKCETokenResponse.cs

22 lines
613 B
C#
Raw Normal View History

using System;
namespace SpotifyAPI.Web
{
2022-11-27 12:29:35 +00:00
public class PKCETokenResponse : 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; }
}
}