16 lines
314 B
C#
16 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class puntosinformacion
|
|
{
|
|
public int idPuntosInformacion { get; set; }
|
|
|
|
public string? Titulo { get; set; }
|
|
|
|
public string? Descripcion { get; set; }
|
|
|
|
public int? idTipoHerramienta { get; set; }
|
|
}
|