14 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GestionIntegral.Api.Dtos.Distribucion
 | |
| {
 | |
|     public class ControlDevolucionesDto
 | |
|     {
 | |
|         public int IdControl { get; set; }
 | |
|         public int IdEmpresa { get; set; }
 | |
|         public string NombreEmpresa { get; set; } = string.Empty;
 | |
|         public string Fecha { get; set; } = string.Empty; // yyyy-MM-dd
 | |
|         public int Entrada { get; set; }
 | |
|         public int Sobrantes { get; set; }
 | |
|         public string? Detalle { get; set; }
 | |
|         public int SinCargo { get; set; }
 | |
|     }
 | |
| } |