using System; namespace Discord.Commands { /// /// Marks the input to not be parsed by the parser. /// [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)] public class RemainderAttribute : Attribute { } }