using System;
namespace SpotifyAPI.Web
{
public class ClientCredentialsTokenResponse
{
public string AccessToken { get; set; } = default!;
public string TokenType { get; set; } = default!;
public int ExpiresIn { get; set; }
///
/// Auto-Initalized to UTC Now
///
///
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public bool IsExpired { get => CreatedAt.AddSeconds(ExpiresIn) <= DateTime.UtcNow; }
}
}