12 lines
335 B
C#
12 lines
335 B
C#
using PlaylistShared.Shared.Enums;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace PlaylistShared.Shared.Yandex;
|
|
|
|
/// <summary>Результат авторизации QR</summary>
|
|
public class YandexAuthQrCheck
|
|
{
|
|
[JsonPropertyName("status")]
|
|
public YandexAuthQrStatus Status { get; set; } = YandexAuthQrStatus.Pending;
|
|
}
|