mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 22:03:41 +01:00
12 lines
292 B
C#
12 lines
292 B
C#
using System;
|
|
|
|
namespace Dalamud.IoC
|
|
{
|
|
/// <summary>
|
|
/// This attribute indicates whether an applicable service should be injected into the plugin.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class PluginServiceAttribute : Attribute
|
|
{
|
|
}
|
|
}
|