mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
25 lines
628 B
C#
25 lines
628 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.NodeFlow
|
|
{
|
|
//public enum FlowStateType
|
|
//{
|
|
// /// <summary>
|
|
// /// 成功(方法成功执行)
|
|
// /// </summary>
|
|
// Succeed,
|
|
// /// <summary>
|
|
// /// 失败(方法没有成功执行,不过执行时没有发生非预期的错误)
|
|
// /// </summary>
|
|
// Fail,
|
|
// /// <summary>
|
|
// /// 异常(节点没有成功执行,执行时发生非预期的错误)
|
|
// /// </summary>
|
|
// Error,
|
|
//}
|
|
}
|