14 lines
290 B
C#
14 lines
290 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Account;
|
|
|
|
public class YAuthBase
|
|
{
|
|
public YAuthStatus Status { get; set; }
|
|
|
|
[JsonPropertyName("redirect_url")]
|
|
public string RedirectUrl { get; set; }
|
|
|
|
public List<YAuthError> Errors { get; set; }
|
|
}
|