11 lines
		
	
	
		
			386 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			386 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GestionIntegral.Api.Dtos.Reportes
 | |
| {
 | |
|     public class DetalleDistribucionCanillaAllDto
 | |
|     {
 | |
|         public string Publicacion { get; set; } = string.Empty;
 | |
|         public int TotalCantSalida { get; set; }
 | |
|         public int TotalCantEntrada { get; set; }
 | |
|         public decimal TotalRendir { get; set; }
 | |
|         public string TipoVendedor { get; set; } = string.Empty;
 | |
|     }
 | |
| } |