18 lines
384 B
C#
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!;
|
|
}
|