16 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								using System;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace GestionIntegral.Api.Dtos.Auditoria
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public class EstadoBobinaHistorialDto
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        public int Id_EstadoBobina { get; set; }
							 | 
						||
| 
								 | 
							
								        public string Denominacion { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								        public string? Obs { 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;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |