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

11 lines
227 B
C#

namespace Voile.Common.Reflection;
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)]
public sealed class IncompleteAttribute : Attribute
{
public IncompleteAttribute()
{
}
}