voile/Voile.Patchouli/Reflection/IncompleteAttribute.cs
2026-01-21 19:08:56 +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()
{
}
}