21 lines
		
	
	
		
			746 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			746 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | using System; | ||
|  | 
 | ||
|  | namespace GestionIntegral.Api.Dtos.Auditoria | ||
|  | { | ||
|  |     public class RecargoZonaHistorialDto | ||
|  |     { | ||
|  |         public int Id_Recargo { get; set; } | ||
|  |         public int Id_Publicacion { get; set; } | ||
|  |         // public string NombrePublicacion { get; set; } // Opcional | ||
|  |         public int Id_Zona { get; set; } | ||
|  |         // public string NombreZona { get; set; } // Opcional | ||
|  |         public DateTime VigenciaD { get; set; } | ||
|  |         public DateTime? VigenciaH { get; set; } | ||
|  |         public decimal Valor { 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; | ||
|  |     } | ||
|  | } |