Files
nadekobot/src/NadekoBot/Common/Attributes/NadekoOptions.cs
2021-12-29 06:07:16 +01:00

10 lines
251 B
C#

namespace NadekoBot.Common.Attributes;
[AttributeUsage(AttributeTargets.Method)]
public sealed class NadekoOptionsAttribute : Attribute
{
public Type OptionType { get; set; }
public NadekoOptionsAttribute(Type t)
=> OptionType = t;
}