Spotify.NET/SpotifyAPI.Web/Models/Response/AuthorizationCodeRefreshResponse.cs

22 lines
564 B
C#
Raw Normal View History

2020-05-14 22:26:40 +01:00
using System;
2020-05-15 19:06:24 +01:00
namespace SpotifyAPI.Web
{
public class AuthorizationCodeRefreshResponse: IUserToken
{
2020-05-25 17:00:38 +01:00
public string AccessToken { get; set; } = default!;
public string TokenType { get; set; } = default!;
public int ExpiresIn { get; set; }
2020-05-25 17:00:38 +01:00
public string Scope { get; set; } = default!;
2020-05-14 22:26:40 +01:00
/// <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; }
}
}
2020-05-25 17:00:38 +01:00