Добавлен вывод QR яндекса
This commit is contained in:
16
PlaylistShared.Api/Entities/YandexAuthSession.cs
Normal file
16
PlaylistShared.Api/Entities/YandexAuthSession.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace PlaylistShared.Api.Entities;
|
||||
|
||||
public class YandexAuthSession
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public Guid? UserId { get; set; }
|
||||
public string QrCodeUrl { get; set; }
|
||||
public string SerializedCookies { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public DateTime? ConfirmedAt { get; set; }
|
||||
public bool IsConfirmed { get; set; }
|
||||
public string? TrackId { get; set; }
|
||||
public string? CsfrToken { get; set; }
|
||||
|
||||
public ApplicationUser? User { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user