Primera versión
This commit is contained in:
17
bdHerramientaCACOA/db/tipologias.cs
Normal file
17
bdHerramientaCACOA/db/tipologias.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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!;
|
||||
}
|
||||
Reference in New Issue
Block a user