13 lines
		
	
	
		
			452 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			452 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace GestionIntegral.Api.Dtos.Reportes
 | |
| {
 | |
|     public class MovimientoBobinaEstadoDetalleDto
 | |
|     {
 | |
|         public string TipoBobina { get; set; } = string.Empty;
 | |
|         public string NumeroRemito { get; set; } = string.Empty;
 | |
|         public DateTime FechaMovimiento { get; set; }
 | |
|         public int Cantidad { get; set; }
 | |
|         public string TipoMovimiento { get; set; } = string.Empty; // "Ingreso", "Utilizada", "Dañada"
 | |
|     }
 | |
| } |