using System; namespace Discord.Commands { /// /// Instructs the command system to treat command parameters of this type /// as a collection of named arguments matching to its properties. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public sealed class NamedArgumentTypeAttribute : Attribute { } }