20 lines
731 B
C#
20 lines
731 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class RegTiradaHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_Registro { get; set; }
|
||
|
|
public int Ejemplares { get; set; }
|
||
|
|
public int Id_Publicacion { get; set; }
|
||
|
|
public string NombrePublicacion { get; set; } = string.Empty; // Para mostrar
|
||
|
|
public DateTime Fecha { get; set; }
|
||
|
|
public int Id_Planta { get; set; }
|
||
|
|
public string NombrePlanta { get; set; } = string.Empty; // Para mostrar
|
||
|
|
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|