16 lines
322 B
C#
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; }
|
|
}
|