18 lines
658 B
C#
18 lines
658 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class PubliSeccionHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_Seccion { get; set; }
|
||
|
|
public int Id_Publicacion { get; set; }
|
||
|
|
// public string NombrePublicacion { get; set; } // Opcional, si quieres traerlo con JOIN
|
||
|
|
public string Nombre { get; set; } = string.Empty; // Nombre de la sección
|
||
|
|
public bool Estado { 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;
|
||
|
|
}
|
||
|
|
}
|