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