2017-07-17 19:42:36 +00:00
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
using Discord.Commands;
|
2017-10-13 04:14:54 +00:00
|
|
|
|
using NadekoBot.Core.Services.Impl;
|
2016-10-05 03:09:44 +00:00
|
|
|
|
|
2017-07-17 19:42:36 +00:00
|
|
|
|
namespace NadekoBot.Common.Attributes
|
2016-10-05 03:09:44 +00:00
|
|
|
|
{
|
|
|
|
|
public class Description : SummaryAttribute
|
|
|
|
|
{
|
2017-09-17 05:28:48 +00:00
|
|
|
|
public Description([CallerMemberName] string memberName="") : base(Localization.LoadCommand(memberName.ToLowerInvariant()).Desc)
|
2016-10-05 03:09:44 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|