11 lines
		
	
	
		
			395 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			395 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GestionIntegral.Api.Dtos.Reportes
 | |
| {
 | |
|     public class ConsumoBobinasSeccionDto
 | |
|     {
 | |
|         public string NombrePublicacion { get; set; } = string.Empty;
 | |
|         public string NombreSeccion { get; set; } = string.Empty;
 | |
|         public string NombreBobina { get; set; } = string.Empty;
 | |
|         public int CantidadBobinas { get; set; }
 | |
|         public int TotalKilos { get; set; }
 | |
|     }
 | |
| } |