first commit

This commit is contained in:
2026-02-09 10:55:45 -07:00
commit 7cca957e1a
77 changed files with 44415 additions and 0 deletions

23
Entidades/Documentos.cs Normal file
View File

@@ -0,0 +1,23 @@
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; }
}
}