Bot.Core.Commands.CommandAttributes.CommandAttributes C# (CSharp) Method

CommandAttributes() public method

public CommandAttributes ( string name ) : System
name string
return System
        public CommandAttributes(string name)
        {
            this.name = name;
            this.async = false;
            this.aliases = new[] { name.ToLower() };
        }

Same methods

CommandAttributes::CommandAttributes ( string name, bool async ) : System
CommandAttributes