Files
PlaylistShared/PlaylistShared.Api/Entities/YandexAuthSession.cs
2026-04-19 21:06:36 +03:00

16 lines
504 B
C#

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; }
}