mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
fix: allow RequiredVersionAttribute on Properties
This commit is contained in:
parent
6813212258
commit
6fb19c1c81
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ namespace Dalamud.IoC
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This attribute indicates the version of a service module that is required for the plugin to load.
|
/// This attribute indicates the version of a service module that is required for the plugin to load.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[AttributeUsage(AttributeTargets.Parameter)]
|
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Property)]
|
||||||
public class RequiredVersionAttribute : Attribute
|
public class RequiredVersionAttribute : Attribute
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue