16 lines
		
	
	
		
			499 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			499 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | using System; | ||
|  | 
 | ||
|  | namespace GestionIntegral.Api.Dtos.Auditoria | ||
|  | { | ||
|  |     public class PlantaHistorialDto | ||
|  |     { | ||
|  |         public int Id_Planta { get; set; } | ||
|  |         public string Nombre { get; set; } = string.Empty; | ||
|  |         public string Detalle { 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; | ||
|  |     } | ||
|  | } |