13 lines
393 B
C#
13 lines
393 B
C#
namespace Entidades.Dto;
|
|
|
|
public class UsuarioDto
|
|
{
|
|
public long Dni { get; set; }
|
|
public string Nombre { get; set; } = null!;
|
|
public string Apellido { get; set; } = null!;
|
|
public string Domicilio { get; set; } = null!;
|
|
public string Celular { get; set; } = null!;
|
|
public string Email { get; set; } = null!;
|
|
public string? EmailRecuperacion { get; set; } = null!;
|
|
}
|