Table of Contents

Class UserCredentialEntity

Namespace
API.CliniCore.Data.Entities.Auth
Assembly
API.CliniCore.dll

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

DateTime

Id

Primary key - same value as the associated profile's Id.

public Guid Id { get; set; }

Property Value

Guid

LastLoginAt

public DateTime? LastLoginAt { get; set; }

Property Value

DateTime?

PasswordHash

public string PasswordHash { get; set; }

Property Value

string

Role

public string Role { get; set; }

Property Value

string

Username

public string Username { get; set; }

Property Value

string