20 lines
741 B
C#
20 lines
741 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class PublicacionHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_Publicacion { get; set; }
|
||
|
|
public string Nombre { get; set; } = string.Empty;
|
||
|
|
public string? Observacion { get; set; }
|
||
|
|
public int Id_Empresa { get; set; }
|
||
|
|
// public string NombreEmpresa { get; set; } // Opcional
|
||
|
|
// public bool CtrlDevoluciones { get; set; } // Si la añades a _H y al modelo
|
||
|
|
public bool? Habilitada { 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;
|
||
|
|
}
|
||
|
|
}
|