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