mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
18 lines
411 B
C#
18 lines
411 B
C#
using Serein.Library.Api;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.Workbench.Avalonia.Api
|
|
{
|
|
/// <summary>
|
|
/// 流程事件管理,转发流程运行环境中触发的事件到工作台各个订阅者
|
|
/// </summary>
|
|
internal interface IFlowEEForwardingService : IFlowEnvironmentEvent
|
|
{
|
|
|
|
}
|
|
}
|