This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/Ellie.Bot.Common/Attributes/DIIgnoreAttribute.cs
2023-07-15 22:25:21 +12:00

11 lines
No EOL
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
{
}