AuthorBuddy/Data/UserEntity.cs
2026-05-21 11:04:42 +02:00

11 lines
358 B
C#

namespace AuthorBuddy.Web.Data;
public class UserEntity
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public bool IsCurrent { get; set; }
public string PasswordHash { get; set; } = string.Empty;
public string TwoFactorSecret { get; set; } = string.Empty;
public bool TwoFactorEnabled { get; set; }
}