Files
nadekobot/src/NadekoBot/Common/Attributes/NadekoModuleAttribute.cs

11 lines
237 B
C#

namespace NadekoBot.Common.Attributes;
[AttributeUsage(AttributeTargets.Class)]
internal sealed class NadekoModuleAttribute : GroupAttribute
{
public NadekoModuleAttribute(string moduleName)
: base(moduleName)
{
}
}