8 lines
228 B
C#
8 lines
228 B
C#
namespace Entidades.Admin;
|
|
|
|
public record UsuarioAdmin {
|
|
public long Dni { get; set; } = 0;
|
|
public string Nombre { get; set; } = "";
|
|
public string Email { get; set; } = "";
|
|
public ulong Habilitado { get; set; }
|
|
} |