Dalamud/Dalamud/IoC/PluginInterfaceAttribute.cs
2021-11-18 15:23:40 +01:00

12 lines
288 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
{
}
}