|
123456789101112131415 |
- using System;
-
- namespace Discord.Commands
- {
- // Override public name of command/module
- [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)]
- public class NameAttribute : Attribute
- {
- public string Text { get; }
- public NameAttribute(string text)
- {
- Text = text;
- }
- }
- }
|