13 lines
363 B
C#
13 lines
363 B
C#
using System.Reflection;
|
|
|
|
namespace Inspectron.Settings.Windows.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
|
|
}
|