18 lines
537 B
C#
18 lines
537 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Passport;
|
|
|
|
public class YValidateSquatter
|
|
{
|
|
[JsonPropertyName("require_flow_with_fio")]
|
|
public bool RequireFlowWithFio { get; set; }
|
|
|
|
[JsonPropertyName("require_flow_with_auth_hint")]
|
|
public bool RequireFlowWithAuthHint { get; set; }
|
|
|
|
[JsonPropertyName("auth_hint_question_id")]
|
|
public string AuthHintQuestionId { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("suggestBy")]
|
|
public string SuggestBy { get; set; } = string.Empty;
|
|
} |