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

16 lines
501 B
C#
Raw Normal View History

using System;
namespace GestionIntegral.Api.Dtos.Auditoria // O Auditoria
{
public class EmpresaHistorialDto
{
public int Id_Empresa { get; set; }
public string Nombre { get; set; } = string.Empty;
public string? Detalle { get; set; }
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;
}
}