Commit Inicial: Se definen tecnologías y modelos de datos.

This commit is contained in:
2025-10-02 14:48:37 -03:00
commit 80eeac45d8
22 changed files with 4919 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace Inventario.API.Models
{
public class HistorialEquipo
{
public int Id { get; set; }
public int Equipo_id { get; set; }
public string Campo_modificado { get; set; } = string.Empty;
public string? Valor_anterior { get; set; }
public string? Valor_nuevo { get; set; }
public DateTime Fecha_cambio { get; set; }
}
}