mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
11 lines
266 B
C#
11 lines
266 B
C#
#nullable disable
|
|
namespace NadekoBot.Common;
|
|
|
|
/// <summary>
|
|
/// Classed marked with this attribute will not be added to the service provider
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class DontAddToIocContainerAttribute : Attribute
|
|
{
|
|
|
|
} |