12 lines
380 B
C#
12 lines
380 B
C#
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; }
|
|
}
|
|
} |