Полный рефакторинг api. Вынесено отдельно api passport
This commit is contained in:
15
YandexMusic.API/Models/Passport/YSuggestByPhoneResult.cs
Normal file
15
YandexMusic.API/Models/Passport/YSuggestByPhoneResult.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace YandexMusic.API.Models.Passport;
|
||||
|
||||
public class YSuggestByPhoneResult
|
||||
{
|
||||
[JsonPropertyName("accounts")]
|
||||
public List<YSuggestAccount> Accounts { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("allowed_registration_flows")]
|
||||
public List<string> AllowedRegistrationFlows { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("uid_from_bb")]
|
||||
public string UidFromBb { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user