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

11 lines
264 B
C#

namespace APIFicheros.DTOs
{
public class DatosFicheros
{
public int idDocumento { get; set; }
public string descripcion { get; set; }
public string nombreFichero { get; set; }
public byte[] fichero { get; set; }
}
}