using System.ComponentModel.DataAnnotations; namespace GestionIntegral.Api.Dtos.Distribucion { public class ToggleBajaCanillaDto { [Required] public bool DarDeBaja { get; set; } // True para dar de baja, False para reactivar } }