Files
HawkeyeVision/framework/Inspectron.Settings.Avalonia/Configuration/OptionSetting.cs
EugeneTes bb861834fd settings for avalonia
libcamera bugfix
2026-04-01 14:05:37 +02:00

13 lines
361 B
C#

using System.Reflection;
namespace Inspectron.Settings.Avalonia.Configuration;
internal class OptionSetting
{
public object Owner { get; set; }
public PropertyInfo Property { get; set; }
public string Description { get; set; }
public string TreePath { get; set; }
public object Value { get; set; } // Temporary value until OK is pressed
}