Files
Asegasa.NET/APIFicheros/DTOs/DatosFicheros.cs

10 lines
217 B
C#

namespace APIFicheros.DTOs
{
public class DatosFicheros
{
public int idDocumento { get; set; }
public IFormFile fichero { get; set; }
public string descripcion { get; set; }
}
}