feat: login usuario

This commit is contained in:
2025-05-05 17:48:05 -03:00
parent 4f44581503
commit 139b855c2c
7 changed files with 366 additions and 52 deletions

View 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!;
}