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

15 lines
293 B
C#

using System;
using Discord.Commands;
namespace NadekoBot.Common.Attributes
{
[AttributeUsage(AttributeTargets.Class)]
sealed class NadekoModuleAttribute : GroupAttribute
{
public NadekoModuleAttribute(string moduleName) : base(moduleName)
{
}
}
}