Files
nadekobot/src/NadekoBot/Common/Attributes/DontAddToIocContainerAttribute.cs

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
{
}