Authentication implementation
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace WebApp.Authentication;
|
||||
|
||||
public class UserCredential
|
||||
{
|
||||
public string Email { get; set; } = string.Empty;
|
||||
public string PasswordHash { get; set; } = string.Empty;
|
||||
public string Role { get; set; } = string.Empty;
|
||||
public string DisplayName { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user