Files
nadekobot/src/NadekoBot/_common/Attributes/NadekoOptionsAttribute.cs

7 lines
190 B
C#

namespace NadekoBot.Common.Attributes;
[AttributeUsage(AttributeTargets.Method)]
public sealed class NadekoOptionsAttribute<TOption> : Attribute
where TOption: INadekoCommandOptions
{
}