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