Code/Core/Attributes/ConstructedGenericAttribute.cs
namespace Nodebox.Attributes;

[AttributeUsage(AttributeTargets.Property)]
public class GenericAttribute : Attribute {
    public bool WithArguments { get; set; } = false;
}