15 lines
374 B
C#
15 lines
374 B
C#
using Discord.Commands;
|
|
using NadekoBot.Services;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace NadekoBot.Attributes
|
|
{
|
|
public class NadekoCommand : CommandAttribute
|
|
{
|
|
public NadekoCommand([CallerMemberName] string memberName="") : base(Localization.LoadCommandString(memberName.ToLowerInvariant() + "_cmd").Split(' ')[0])
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|