mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 13:23:40 +01:00
11 lines
258 B
C#
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
|
|
{
|
|
}
|