NadekoBot/NadekoBot.Core/Common/Attributes/Description.cs
2017-10-13 06:14:54 +02:00

15 lines
363 B
C#

using System.Runtime.CompilerServices;
using Discord.Commands;
using NadekoBot.Core.Services.Impl;
namespace NadekoBot.Common.Attributes
{
public class Description : SummaryAttribute
{
public Description([CallerMemberName] string memberName="") : base(Localization.LoadCommand(memberName.ToLowerInvariant()).Desc)
{
}
}
}