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

8 lines
196 B
C#

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