Files
YandexMusic/YandexMusic.API/Models/Account/YAccessToken.cs
2026-04-10 15:05:32 +03:00

21 lines
463 B
C#

using System.Text.Json.Serialization;
namespace YandexMusic.API.Models.Account;
public class YAccessToken
{
[JsonPropertyName("status")]
public string Status { get; set; }
[JsonPropertyName("access_token")]
public string AccessToken { get; set; }
[JsonPropertyName("expires_in")]
public string Expires { get; set; }
[JsonPropertyName("token_type")]
public string TokenType { get; set; }
public string Uid { get; set; }
}