mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 11:59:21 +01:00
15 lines
374 B
C#
15 lines
374 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
|
|
{
|
|
}
|
|
}
|