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

20 lines
749 B
C#

namespace GestionIntegral.Api.Dtos.Reportes
{
public class VentaMensualSecretariaTirDevoDto
{
public int Dia { get; set; }
public int TiradaCoop { get; set; }
public int DevolucionCoop { get; set; }
public int VentaCoop { get; set; }
public int VentaCan { get; set; }
public int TiradaPopular { get; set; }
public int DevolucionPopular { get; set; }
public int VentaPopular { get; set; }
public int TiradaClarin { get; set; }
public int DevolucionClarin { get; set; }
public int VentaClarin { get; set; }
public int TiradaNacion { get; set; }
public int DevolucionNacion { get; set; }
public int VentaNacion { get; set; }
}
}