aspclassic-core/AspClassic.Scripting/Runtime/NotNullItemsAttribute.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

8 lines
201 B
C#

using System;
namespace AspClassic.Scripting.Runtime;
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
public sealed class NotNullItemsAttribute : Attribute
{
}