using System;
namespace Discord.Commands
{
/// Provides aliases for a command.
[AttributeUsage(AttributeTargets.Method)]
public class AliasAttribute : Attribute
{
/// The aliases which have been defined for the command.
public string[] Aliases { get; }
/// Creates a new with the given aliases.
public AliasAttribute(params string[] aliases)
{
Aliases = aliases;
}
}
}