Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Auditoria/NovedadCanillaHistorialDto.cs

19 lines
700 B
C#
Raw Normal View History

using System;
namespace GestionIntegral.Api.Dtos.Auditoria
{
public class NovedadCanillaHistorialDto
{
public int Id_Novedad { get; set; } // ID de la novedad original
public int Id_Canilla { get; set; }
// public string NombreCanilla { get; set; } // Opcional, si quieres traerlo
public DateTime Fecha { get; set; } // Fecha original de la novedad
public string? Detalle { get; set; }
// Campos de auditoría
public int Id_Usuario { get; set; }
public string NombreUsuarioModifico { get; set; } = string.Empty;
public DateTime FechaMod { get; set; }
public string TipoMod { get; set; } = string.Empty;
}
}