namespace GestionIntegral.Api.Models.Distribucion { public class PublicacionHistorico { // No hay PK autoincremental explĂ­cita en el script de _H public int IdPublicacion { get; set; } public string Nombre { get; set; } = string.Empty; public string? Observacion { get; set; } public int IdEmpresa { get; set; } public bool? Habilitada { get; set; } // Coincide con la tabla _H // Campos de AuditorĂ­a public int Id_Usuario { get; set; } public DateTime FechaMod { get; set; } public string TipoMod { get; set; } = string.Empty; } }