Обнновлено до .net10
This commit is contained in:
@@ -1,20 +1,21 @@
|
||||
namespace YandexMusic.API.Models.Account
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace YandexMusic.API.Models.Account;
|
||||
|
||||
public class YPhoneNumber
|
||||
{
|
||||
public class YPhoneNumber
|
||||
{
|
||||
[JsonProperty("masked_e164")]
|
||||
public string MaskedE164 { get; set; }
|
||||
[JsonPropertyName("masked_e164")]
|
||||
public string MaskedE164 { get; set; }
|
||||
|
||||
public string E164 { get; set; }
|
||||
public string E164 { get; set; }
|
||||
|
||||
public string International { get; set; }
|
||||
public string International { get; set; }
|
||||
|
||||
[JsonProperty("masked_original")]
|
||||
public string MaskedOriginal { get; set; }
|
||||
[JsonPropertyName("masked_original")]
|
||||
public string MaskedOriginal { get; set; }
|
||||
|
||||
public string Original { get; set; }
|
||||
public string Original { get; set; }
|
||||
|
||||
[JsonProperty("masked_international")]
|
||||
public string MaskedInternational { get; set; }
|
||||
}
|
||||
[JsonPropertyName("masked_international")]
|
||||
public string MaskedInternational { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user