Files
YandexMusic/PlaylistShared/Data/Entities/ApplicationUser.cs
2026-04-11 15:41:24 +03:00

10 lines
323 B
C#

namespace PlaylistShared.Data.Entities;
public class ApplicationUser : IdentityUser
{
public string? YandexId { get; set; }
public string? AccessToken { get; set; }
public string? RefreshToken { get; set; }
public DateTime? AccessTokenExpiresAt { get; set; }
public string? AvatarUrl { get; set; }
}