mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
16 lines
322 B
C#
16 lines
322 B
C#
using System;
|
|
|
|
namespace NadekoBot.Common.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class NadekoOptionsAttribute : Attribute
|
|
{
|
|
public Type OptionType { get; set; }
|
|
|
|
public NadekoOptionsAttribute(Type t)
|
|
{
|
|
this.OptionType = t;
|
|
}
|
|
}
|
|
}
|