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