11 lines
227 B
C#
11 lines
227 B
C#
namespace Voile.Common.Reflection;
|
|
|
|
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = false)]
|
|
public sealed class IncompleteAttribute : Attribute
|
|
{
|
|
public IncompleteAttribute()
|
|
{
|
|
|
|
}
|
|
}
|