using System;
using System.Collections.Generic;
namespace bdHerramientaCACOA.db;
///
///
///
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 { get; set; } = new List();
}