using System.Text.Json.Serialization; namespace YandexMusic.API.Models.Passport; public class YSuggestByPhoneResult { [JsonPropertyName("accounts")] public List Accounts { get; set; } = new(); [JsonPropertyName("allowed_registration_flows")] public List AllowedRegistrationFlows { get; set; } = new(); [JsonPropertyName("uid_from_bb")] public string UidFromBb { get; set; } = string.Empty; }