InjectionMethodAttribute
Represents an attribute for tracking injection methods.
using System;
namespace Stashbox.Attributes
{
[AttributeUsage(AttributeTargets.Method)]
public sealed class InjectionMethodAttribute : Attribute
{
}
}