namespace GestionIntegral.Api.Dtos.Reportes { public class TiradasPublicacionesSeccionesDto { public string NombreSeccion { get; set; } = string.Empty; public int TotalPaginasImpresas { get; set; } public int CantidadTiradas { get; set; } public int TotalPaginasEjemplares { get; set; } public int TotalEjemplares { get; set; } public int PromedioPaginasPorEjemplar { get; set; } } }