13 lines
		
	
	
		
			447 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			447 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | using System; | ||
|  | using System.Collections.Generic; | ||
|  | 
 | ||
|  | namespace GestionIntegral.Api.Dtos.Reportes.ViewModels | ||
|  | { | ||
|  |     public class VentaMensualSecretariaTirDevoViewModel | ||
|  |     { | ||
|  |         public IEnumerable<VentaMensualSecretariaTirDevoDto> VentasDiarias { get; set; } = new List<VentaMensualSecretariaTirDevoDto>(); | ||
|  |          | ||
|  |         public string FechaDesde { get; set; } = string.Empty; | ||
|  |         public string FechaHasta { get; set; } = string.Empty; | ||
|  |     } | ||
|  | } |