Files
PlaylistShared/PlaylistShared.Api/Entities/YandexAuthSession.cs

19 lines
632 B
C#

namespace PlaylistShared.Api.Entities;
public class YandexAuthSession
{
public int Id { get; set; }
public Guid? UserId { get; set; }
public string QrCodeUrl { get; set; } = string.Empty;
public string SerializedCookies { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; }
public DateTime? ConfirmedAt { get; set; }
public bool IsConfirmed { get; set; }
public string? TrackId { get; set; }
public string? CsrfToken { get; set; }
public string? HeaderProcessId { get; set; }
public string? HeaderCsrfToken { get; set; }
public ApplicationUser? User { get; set; }
}