Dalamud/Dalamud/IoC/PluginInterfaceAttribute.cs

11 lines
258 B
C#

using System;
namespace Dalamud.IoC;
/// <summary>
/// This attribute indicates whether the decorated class should be exposed to plugins via IoC.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class PluginInterfaceAttribute : Attribute
{
}