using System;
namespace Serein.Library
{
///
/// 节点参数设置
///
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class NodeParamAttribute : Attribute
{
///
/// 显示名称
///
public string Name;
///
/// 是否显式设置(此设置对于有入参默认值的参数无效)
///
public bool IsExplicit;
}
}