mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-02-23 15:15:01 +01:00
47 lines
1.1 KiB
C#
Executable File
47 lines
1.1 KiB
C#
Executable File
using DotBased.AspNet.Authority.Attributes;
|
|
|
|
namespace DotBased.AspNet.Authority.Models.Authority;
|
|
|
|
public class AuthorityUser()
|
|
{
|
|
public AuthorityUser(string userName) : this()
|
|
{
|
|
UserName = userName;
|
|
}
|
|
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public bool Enabled { get; set; }
|
|
|
|
public bool Confirmed { get; set; }
|
|
|
|
public bool Locked { get; set; }
|
|
|
|
public DateTime LockedDate { get; set; }
|
|
|
|
public string? UserName { get; set; }
|
|
|
|
public string? PasswordHash { get; set; }
|
|
|
|
public DateTime CreatedDate { get; set; } = DateTime.Now;
|
|
|
|
public bool TwoFactorEnabled { get; set; }
|
|
|
|
public long Version { get; set; }
|
|
|
|
public long SecurityVersion { get; set; }
|
|
|
|
[Protect]
|
|
public string? EmailAddress { get; set; }
|
|
|
|
public bool EmailConfirmed { get; set; }
|
|
|
|
[Protect]
|
|
public string? PhoneNumber { get; set; }
|
|
|
|
public bool PhoneNumberConfirmed { get; set; }
|
|
|
|
public ICollection<AuthorityAttribute> Attributes { get; set; } = [];
|
|
|
|
public override string ToString() => UserName ?? EmailAddress ?? string.Empty;
|
|
} |