Arreglado fallo de aunteticación y agregado endpoint de subir archivo (sin probar)

This commit is contained in:
2025-12-17 12:32:27 +01:00
parent ffc1557074
commit e15c0bcd8f
10 changed files with 339 additions and 65 deletions

View File

@@ -0,0 +1,8 @@
namespace APIFicheros.DTOs
{
public class DatosAuth
{
public string usuario { get; set; }
public string password { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace APIFicheros.DTOs
{
public class DatosFicheros
{
public int idDocumento { get; set; }
public IFormFile fichero { get; set; }
public string descripcion { get; set; }
}
}