14 lines
494 B
C#
14 lines
494 B
C#
namespace Liber_Incantamentum.Domain.Authentification.Entities
|
|
{
|
|
public class User
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
public string Role { get; set; } = string.Empty;
|
|
public string? RefreshToken { get; set; }
|
|
public DateTime? RefreshTokenExpiryTime { get; set; }
|
|
}
|
|
}
|