Class UserCredentialEntity
EF Core entity for user authentication credentials. Id is the same as the associated profile's Id (1:1 relationship, shared identity).
public class UserCredentialEntity
- Inheritance
-
UserCredentialEntity
- Inherited Members
- Extension Methods
Properties
CreatedAt
public DateTime CreatedAt { get; set; }
Property Value
Id
Primary key - same value as the associated profile's Id.
public Guid Id { get; set; }
Property Value
LastLoginAt
public DateTime? LastLoginAt { get; set; }
Property Value
PasswordHash
public string PasswordHash { get; set; }
Property Value
Role
public string Role { get; set; }
Property Value
Username
public string Username { get; set; }