Files
nadekobot/src/Nadeko.Medusa/Attributes/injectAttribute.cs
2022-04-16 12:44:46 +00:00

10 lines
248 B
C#

namespace Nadeko.Snake;
/// <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
{
}