Files
YandexMusic/YandexMusic.API/Models/Account/YAuthQrState.cs
FrigaT 0bbaac5689
All checks were successful
Release / pack-and-publish (release) Successful in 1m5s
Переделан способ авторизации по qr
2026-04-20 14:31:47 +03:00

9 lines
178 B
C#

using System.Runtime.Serialization;
namespace YandexMusic.API.Models.Account;
public enum YAuthQrState
{
[EnumMember(Value = "otp_auth_finished")]
OtpAuthFinished,
}