12 lines
376 B
C#
12 lines
376 B
C#
|
|
namespace PruebaGentle.Core.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 Email { get; set; } = string.Empty;
|
||
|
|
public string NombreCompleto { get; set; } = string.Empty;
|
||
|
|
public DateTime FechaCreacion { get; set; }
|
||
|
|
}
|