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

15 lines
293 B
C#
Raw Normal View History

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