Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Reportes/VentaMensualSecretariaElPlataDto.cs

13 lines
405 B
C#

namespace GestionIntegral.Api.Dtos.Reportes
{
public class VentaMensualSecretariaElPlataDto
{
public int Dia { get; set; }
public int TiradaCoop { get; set; }
public int DevolucionCoop { get; set; }
public int VentaCoop { get; set; }
public int TiradaCan { get; set; }
public int VentaCan { get; set; }
public int Total { get; set; }
}
}