voile/Voile.Common/Reflection/AutoconfigurableAttribute.cs
2026-01-20 16:59:40 +01:00

13 lines
337 B
C#

namespace Voile.Common.Reflection;
[AttributeUsage(AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
public sealed class AutoconfigurableAttribute : Attribute
{
// See the attribute guidelines at
// http://go.microsoft.com/fwlink/?LinkId=85236
public AutoconfigurableAttribute()
{
}
}