Files
serein-flow/Library/Api/IDynamicFlowNode.cs

17 lines
259 B
C#
Raw Normal View History

2024-08-06 16:09:46 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Library.Api
2024-08-06 16:09:46 +08:00
{
2024-10-11 19:31:34 +08:00
/// <summary>
/// 空接口
/// </summary>
2024-08-06 16:09:46 +08:00
public interface IDynamicFlowNode
{
}
}