10 lines
294 B
C#
10 lines
294 B
C#
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;
|
|
}
|