using System.ComponentModel.DataAnnotations; namespace GestionIntegral.Api.Dtos.Distribucion { public class UpdateNovedadCanillaDto { // No se permite cambiar IdCanilla ni Fecha [MaxLength(250)] public string? Detalle { get; set; } } }