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.
|
- using System;
-
- namespace Discord.Commands
- {
- [AttributeUsage(AttributeTargets.Method)]
- public class CommandAttribute : Attribute
- {
- public string Text { get; }
- public RunMode RunMode { get; set; } = RunMode.Default;
-
- public CommandAttribute()
- {
- Text = null;
- }
- public CommandAttribute(string text)
- {
- Text = text;
- }
- }
- }
|