Добавлен вывод QR яндекса
This commit is contained in:
@@ -12,4 +12,4 @@ public class UserSession
|
||||
public ApplicationUser? User { get; set; }
|
||||
public ICollection<TrackAdditionLog> TrackAdditionLogs { get; set; } = new List<TrackAdditionLog>();
|
||||
public ICollection<TrackRemovalLog> TrackRemovalLogs { get; set; } = new List<TrackRemovalLog>();
|
||||
}
|
||||
}
|
||||
|
||||
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