21 lines
445 B
C#
21 lines
445 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Account;
|
|
|
|
public class YAuthQRStatus : YAuthBase
|
|
{
|
|
[JsonPropertyName("default_uid")]
|
|
public int DefaultUid { get; set; }
|
|
|
|
public string RetPath { get; set; }
|
|
|
|
[JsonPropertyName("track_id")]
|
|
public string TrackId { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string State { get; set; }
|
|
|
|
public YAuthCaptcha Captcha { get; set; }
|
|
}
|