Обнновлено до .net10
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
namespace YandexMusic.API.Models.Account
|
||||
{
|
||||
public class YAuthLetterStatus : YAuthBase
|
||||
{
|
||||
[JsonProperty("magic_link_confirmed")]
|
||||
public bool MagicLinkConfirmed { get; set; }
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
[JsonProperty("track_id")]
|
||||
public string TrackId { get; set; }
|
||||
}
|
||||
namespace YandexMusic.API.Models.Account;
|
||||
|
||||
public class YAuthLetterStatus : YAuthBase
|
||||
{
|
||||
[JsonPropertyName("magic_link_confirmed")]
|
||||
public bool MagicLinkConfirmed { get; set; }
|
||||
|
||||
[JsonPropertyName("track_id")]
|
||||
public string TrackId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user