using System;
using NodePipeline.Abstractions.Interfaces.Validation;
// ReSharper disable UnusedParameter.Local
namespace NodePipeline.Abstractions.Attributes.Validation.Node;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public sealed class HasNodeValidatorAttribute : Attribute
{
///
/// Indicates that node should use specified
///
/// Type of
public HasNodeValidatorAttribute(Type validatorType)
{
}
}