voile/Voile.Common.Tests/DemoAssets/AutoconfigurableObject.cs
2026-01-20 16:59:40 +01:00

16 lines
322 B
C#

using Voile.Common.Reflection;
namespace Voile.Common.Tests.DemoAssets;
public class AutoconfigurableObject
{
[Autoconfigurable]
public bool BooleanValue { get; set; }
[Autoconfigurable]
public int IntegerValue { get; set; }
[Autoconfigurable]
public string StringValue { get; set; }
}