fix: allow RequiredVersionAttribute on Properties

This commit is contained in:
goat 2021-08-24 01:35:52 +02:00
parent 6813212258
commit 6fb19c1c81
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -5,7 +5,7 @@ namespace Dalamud.IoC
/// <summary>
/// This attribute indicates the version of a service module that is required for the plugin to load.
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Property)]
public class RequiredVersionAttribute : Attribute
{
/// <summary>