using System; namespace GestionIntegral.Api.Dtos.Distribucion { public class NovedadCanillaDto { public int IdNovedad { get; set; } public int IdCanilla { get; set; } public string NombreCanilla { get; set; } = string.Empty; // Para mostrar en UI public DateTime Fecha { get; set; } public string? Detalle { get; set; } } }