forked from EllieBotDevs/elliebot
11 lines
249 B
C#
11 lines
249 B
C#
|
#nullable disable
|
|||
|
namespace Ellie.Common;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Classed marked with this attribute will not be added to the service provider
|
|||
|
/// </summary>
|
|||
|
[AttributeUsage(AttributeTargets.Class)]
|
|||
|
public class DIIgnoreAttribute : Attribute
|
|||
|
{
|
|||
|
|
|||
|
}
|