mirror of
https://github.com/azaion/admin.git
synced 2026-04-23 04:56:33 +00:00
f5e466108a
add ToHash for encryption Key
11 lines
361 B
C#
11 lines
361 B
C#
namespace Azaion.Common.Entities;
|
|
|
|
public class User
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Email { get; set; } = null!;
|
|
public string PasswordHash { get; set; } = null!;
|
|
public string? Hardware { get; set; }
|
|
public string? HardwareHash { get; set; }
|
|
public RoleEnum Role { get; set; }
|
|
} |