mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
17 lines
430 B
C#
17 lines
430 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using Discord.Commands;
|
|
using NadekoBot.Services;
|
|
|
|
namespace NadekoBot.Common.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class DescriptionAttribute : SummaryAttribute
|
|
{
|
|
// Localization.LoadCommand(memberName.ToLowerInvariant()).Desc
|
|
public DescriptionAttribute(string text = "") : base(text)
|
|
{
|
|
}
|
|
}
|
|
}
|