chore: mark PluginServiceAttribute with MeansImplicitUse

This commit is contained in:
Anna Clemens 2022-01-30 17:15:20 -05:00
parent 2ebe1a9c19
commit 7ec00462ac
No known key found for this signature in database
GPG key ID: 0B391D8F06FCD9E0

View file

@ -1,11 +1,14 @@
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
{
}