add SettingsValueOption

This commit is contained in:
Pilzinsel64
2025-04-25 09:47:36 +02:00
parent e6340b4894
commit ec22181750
3 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace Pilz.Configuration;
internal interface ISettingsValueOptionValueAccessor
{
public object ValueRaw { get; set; }
}