2024-10-15 10:55:41 +08:00
|
|
|
|
using Serein.Library.Enums;
|
2024-09-24 22:39:43 +08:00
|
|
|
|
using System;
|
2024-09-17 14:20:27 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Serein.NodeFlow
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class NodeStaticConfig
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 节点的命名空间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string NodeSpaceName = $"{nameof(Serein)}.{nameof(Serein.NodeFlow)}.{nameof(Serein.NodeFlow.Model)}";
|
2024-09-24 22:39:43 +08:00
|
|
|
|
|
2024-09-26 21:00:17 +08:00
|
|
|
|
public static readonly ConnectionType[] ConnectionTypes = [
|
|
|
|
|
|
ConnectionType.Upstream,
|
|
|
|
|
|
ConnectionType.IsSucceed,
|
|
|
|
|
|
ConnectionType.IsFail,
|
|
|
|
|
|
ConnectionType.IsError];
|
2024-09-17 14:20:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|