mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-20 06:47:44 +01:00
12 lines
288 B
C#
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
|
|
{
|
|
}
|
|
}
|