You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

NameAttribute.cs 412 B

12345678910111213141516
  1. using System;
  2. namespace Discord.Commands
  3. {
  4. // Override public name of command/module
  5. [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)]
  6. public class NameAttribute : Attribute
  7. {
  8. public string Text { get; }
  9. public NameAttribute(string text)
  10. {
  11. Text = text;
  12. }
  13. }
  14. }