add: registry pass through

This commit is contained in:
h z
2025-02-19 17:09:07 +00:00
parent 2c32af6b42
commit d720b03480
6 changed files with 34 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
namespace Polonium.Attributes;
[AttributeUsage(AttributeTargets.Property)]
public class RegistryPassThrough(bool getterOnly = false) : Attribute
{
public bool GetterOnly { get; set; } = getterOnly;
}