NadekoBot/NadekoBot.Core/Common/Attributes/NadekoCommand.cs
2017-09-30 00:46:33 +02:00

15 lines
375 B
C#

using System.Runtime.CompilerServices;
using Discord.Commands;
using NadekoBot.Services.Impl;
namespace NadekoBot.Common.Attributes
{
public class NadekoCommand : CommandAttribute
{
public NadekoCommand([CallerMemberName] string memberName="") : base(Localization.LoadCommand(memberName.ToLowerInvariant()).Cmd.Split(' ')[0])
{
}
}
}