This repository has been archived on 2024-12-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
elliebot/src/Ellie.Marmalade/Attributes/injectAttribute.cs

11 lines
248 B
C#
Raw Normal View History

namespace Ellie.Marmalade;
2024-03-23 18:42:46 +13:00
/// <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
{
}