feat: login usuario
This commit is contained in:
11
Entidades/Dto/UsuarioDto.cs
Normal file
11
Entidades/Dto/UsuarioDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user