mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
326 B
C#
12 lines
326 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
namespace NadekoBot.Common.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class AliasesAttribute : AliasAttribute
|
|
{
|
|
public AliasesAttribute([CallerMemberName] string memberName = "")
|
|
: base(CommandNameLoadHelper.GetAliasesFor(memberName))
|
|
{
|
|
}
|
|
} |