using System; using System.Collections.Generic; namespace GestionIntegral.Api.Dtos.Reportes.ViewModels { public class VentaMensualSecretariaElPlataViewModel { public IEnumerable VentasDiarias { get; set; } = new List(); public string FechaDesde { get; set; } = string.Empty; public string FechaHasta { get; set; } = string.Empty; } }