using System; namespace Discord.Commands { // Extension of the Cosmetic Summary, for Groups, Commands, and Parameters /// /// Attaches remarks to your commands. /// [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public class RemarksAttribute : Attribute { public string Text { get; } public RemarksAttribute(string text) { Text = text; } } }