22 lines
		
	
	
		
			898 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
		
			898 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | using System; | ||
|  | 
 | ||
|  | namespace GestionIntegral.Api.Dtos.Auditoria | ||
|  | { | ||
|  |     public class RegSeccionTiradaHistorialDto | ||
|  |     { | ||
|  |         public int Id_Tirada { get; set; } // ID del registro original de la sección de la tirada | ||
|  |         public int Id_Publicacion { get; set; } | ||
|  |         public string NombrePublicacion { get; set; } = string.Empty; | ||
|  |         public int Id_Seccion { get; set; } | ||
|  |         public string NombreSeccion { get; set; } = string.Empty; | ||
|  |         public int CantPag { get; set; } | ||
|  |         public DateTime Fecha { get; set; } // Fecha original de la tirada | ||
|  |         public int Id_Planta { get; set; } | ||
|  |         public string NombrePlanta { get; set; } = string.Empty; | ||
|  | 
 | ||
|  |         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; | ||
|  |     } | ||
|  | } |