Primera versión

This commit is contained in:
2025-07-25 12:56:07 +02:00
parent 850f9ce69f
commit cea1fdaa34
151 changed files with 26033 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
namespace bdHerramientaCACOA.db;
/// <summary>
///
/// </summary>
public partial class tipoproyectos
{
public int idtipoproyectos { get; set; }
public int idTipoDocumento { get; set; }
public string? Descripcion { get; set; }
public string? Abreviatura { get; set; }
public virtual enumeraciones idTipoDocumentoNavigation { get; set; } = null!;
public virtual ICollection<tipoproyecto_documentacion> tipoproyecto_documentacion { get; set; } = new List<tipoproyecto_documentacion>();
}