mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
25 lines
496 B
C#
25 lines
496 B
C#
using System;
|
|
|
|
namespace Serein.Library
|
|
{
|
|
/// <summary>
|
|
/// 节点参数设置
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
public sealed class NodeParamAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 显示名称
|
|
/// </summary>
|
|
public string Name;
|
|
|
|
/// <summary>
|
|
/// 是否显式设置(此设置对于有入参默认值的参数无效)
|
|
/// </summary>
|
|
public bool IsExplicit;
|
|
|
|
|
|
}
|
|
|
|
}
|