mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
10 lines
251 B
C#
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;
|
|
} |