using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Discord.SlashCommands { /// /// An Attribute that gives the command parameter a description. /// [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)] public class Required : Attribute { } }