13 lines
337 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|