9 lines
178 B
C#
9 lines
178 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Account;
|
|
|
|
public enum YAuthQrState
|
|
{
|
|
[EnumMember(Value = "otp_auth_finished")]
|
|
OtpAuthFinished,
|
|
} |