11 lines
264 B
C#
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; }
|
|
}
|
|
}
|