NadekoBot/NadekoBot.Core/Common/Attributes/NadekoModuleAttribute.cs

15 lines
293 B
C#
Raw Normal View History

2017-07-17 19:42:36 +00:00
using System;
using Discord.Commands;
2017-07-17 19:42:36 +00:00
namespace NadekoBot.Common.Attributes
{
2017-05-22 23:59:31 +00:00
[AttributeUsage(AttributeTargets.Class)]
2016-12-16 18:43:57 +00:00
sealed class NadekoModuleAttribute : GroupAttribute
{
2017-05-24 04:43:00 +00:00
public NadekoModuleAttribute(string moduleName) : base(moduleName)
{
}
}
}