Files
nadekobot/src/Nadeko.Medusa/Attributes/injectAttribute.cs
2024-04-27 22:45:14 +00:00

10 lines
252 B
C#

namespace NadekoBot.Medusa;
/// <summary>
/// Marks services in command arguments for injection.
/// The injected services must come after the context and before any input parameters.
/// </summary>
public class injectAttribute : Attribute
{
}