Добавлен вывод QR яндекса
This commit is contained in:
13
PlaylistShared.Shared/Yandex/YandexAuthQr.cs
Normal file
13
PlaylistShared.Shared/Yandex/YandexAuthQr.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace PlaylistShared.Shared.Yandex;
|
||||
|
||||
/// <summary>Результат авторизации QR</summary>
|
||||
public class YandexAuthQr
|
||||
{
|
||||
[JsonPropertyName("qrLink")]
|
||||
public string QrLink { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("sessionId")]
|
||||
public string SessionId { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user