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!; /// /// Auto-Initalized to UTC Now /// /// public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public bool IsExpired { get => CreatedAt.AddSeconds(ExpiresIn) <= DateTime.UtcNow; } } }