AllowsNullAttribute.cs
using System;
namespace Unity.VisualScripting
{
[AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = true)]
public sealed class AllowsNullAttribute : Attribute
{
public AllowsNullAttribute() { }
}
}