13 lines
286 B
C#
13 lines
286 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Account;
|
|
|
|
public class YAuthQRStatus
|
|
{
|
|
[JsonPropertyName("state")]
|
|
public string? State { get; set; } = null;
|
|
|
|
[JsonPropertyName("trackId")]
|
|
public string TrackId { get; set; } = string.Empty;
|
|
}
|