This commit is contained in:
Thanakarn Klangkasame
2025-09-30 11:01:02 +07:00
commit 92e614674c
182 changed files with 9596 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using AMREZ.EOP.Domain.Entities.Common;
using AMREZ.EOP.Domain.Shared._Users;
namespace AMREZ.EOP.Domain.Entities.Authentications;
public sealed class UserMfaFactor : BaseEntity
{
public Guid TenantId { get; set; }
public Guid UserId { get; set; }
public MfaType Type { get; set; }
public string? Label { get; set; }
public string? Secret { get; set; } // TOTP secret (encrypt at rest)
public string? PhoneE164 { get; set; }
public string? Email { get; set; }
public string? PublicKey { get; set; } // WebAuthn
public string? CredentialId { get; set; } // WebAuthn
public bool Enabled { get; set; } = true;
public DateTimeOffset AddedAt { get; set; } = DateTimeOffset.UtcNow;
public DateTimeOffset? LastUsedAt { get; set; }
public User User { get; set; } = default!;
}