Обнновлено до .net10

This commit is contained in:
FrigaT
2026-04-10 15:05:32 +03:00
parent 11d0b0d72f
commit 8444fc5f8e
386 changed files with 6361 additions and 7164 deletions

View File

@@ -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; }
}