10 lines
292 B
C#
10 lines
292 B
C#
namespace JSMR.Domain.Entities;
|
|
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
public string? Role { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
} |