using System;

namespace Unity.VisualScripting
{
    [AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = true)]
    public sealed class AotIncompatibleAttribute : Attribute
    {
        public AotIncompatibleAttribute() : base() { }
    }
}