Files
HerramientaCASA/bdHerramientaCACOA/db/tipologias.cs
2025-07-25 12:56:07 +02:00

18 lines
384 B
C#

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!;
}