mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
13 lines
261 B
C#
13 lines
261 B
C#
using System.Reflection;
|
|
|
|
namespace Serein.NodeFlow.Tool.SereinExpression
|
|
{
|
|
/// <summary>
|
|
/// 条件解析抽象类
|
|
/// </summary>
|
|
public abstract class SereinConditionResolver
|
|
{
|
|
public abstract bool Evaluate(object obj);
|
|
}
|
|
}
|