Dalamud/Dalamud/IoC/PluginServiceAttribute.cs
2021-11-18 15:23:40 +01:00

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
{
}
}