24 lines
688 B
C#
24 lines
688 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EFCDesk.Entidades
|
|
{
|
|
public class Documentos
|
|
{
|
|
public string id { get; set; }
|
|
public string organizacion { get; set; }
|
|
public string pedimento { get; set; }
|
|
public string pedimento_numero { get; set; }
|
|
public string archivo { get; set; }
|
|
public int document_type { get; set; }
|
|
public int size { get; set; }
|
|
public string extension { get; set; }
|
|
public int fuente { get; set; }
|
|
public string created_at { get; set; }
|
|
public string updated_at { get; set; }
|
|
}
|
|
}
|