elliebot/src/Ellie.Marmalade/Attributes/injectAttribute.cs
2023-07-11 19:25:40 +12:00

10 lines
248 B
C#

namespace Ellie.Marmalade;
/// <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
{
}