9 lines
		
	
	
		
			304 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			304 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GestionIntegral.Api.Dtos.Reportes
 | |
| {
 | |
|     public class MovimientoBobinaEstadoTotalDto
 | |
|     {
 | |
|         public string TipoMovimiento { get; set; } = string.Empty; // "Ingresos", "Utilizadas", "Dañadas"
 | |
|         public int TotalBobinas { get; set; }
 | |
|         public int TotalKilos { get; set; }
 | |
|     }
 | |
| } |