using System; using System.Collections.Generic; namespace bdHerramientaCACOA.db; public partial class tipologias { public int idtipologia { get; set; } public int idGrupoTip { get; set; } public string Descripcion { get; set; } = null!; public double CoeficienteUso { get; set; } public virtual enumeraciones idGrupoTipNavigation { get; set; } = null!; }