Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Reportes/ViewModels/VentaMensualSecretariaElDiaViewModel.cs

13 lines
441 B
C#
Raw Normal View History

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