10 lines
248 B
C#
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
|
|
{
|
|
|
|
}
|