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