15 lines
293 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|