Files
YandexMusic/YandexMusic.API/Models/Account/YPhoneNumber.cs
2026-04-10 12:12:33 +03:00

20 lines
511 B
C#

namespace YandexMusic.API.Models.Account
{
public class YPhoneNumber
{
[JsonProperty("masked_e164")]
public string MaskedE164 { get; set; }
public string E164 { get; set; }
public string International { get; set; }
[JsonProperty("masked_original")]
public string MaskedOriginal { get; set; }
public string Original { get; set; }
[JsonProperty("masked_international")]
public string MaskedInternational { get; set; }
}
}