using System; namespace GestionIntegral.Api.Dtos.Reportes { public class NovedadesCanillasReporteDto { public string NomApe { get; set; } = string.Empty; // Nombre del Canillita public DateTime Fecha { get; set; } public string? Detalle { get; set; } } }