All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 7m55s
13 lines
447 B
C#
13 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GestionIntegral.Api.Dtos.Reportes.ViewModels
|
|
{
|
|
public class VentaMensualSecretariaElPlataViewModel
|
|
{
|
|
public IEnumerable<VentaMensualSecretariaElPlataDto> VentasDiarias { get; set; } = new List<VentaMensualSecretariaElPlataDto>();
|
|
|
|
public string FechaDesde { get; set; } = string.Empty;
|
|
public string FechaHasta { get; set; } = string.Empty;
|
|
}
|
|
} |