dc/Common/IEventHandler.cs
13118993771@163.com 5e9d0f1e2d EAP
2022-04-01 17:03:54 +08:00

17 行
521 B
C#

// ********************************************************************************
// 文件名字: IEventHandler
// 文件描述: IEventHandler
// 开发人员: Hupe
// 创建时间: 2021/10/14 16:22
// ********************************************************************************
using ARI.EAP.HOST.SRD;
using Glorysoft.SECSwell;
using System.Collections.Generic;
namespace Glorysoft.SECS.EQP.Common
{
public interface IEventHandler
{
void Execute(SECSTransaction trans, EVENT even);
}
}