mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-11-30 02:37:55 +08:00
11 lines
203 B
C#
11 lines
203 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Automation.OPCClient
|
|
{
|
|
public delegate void OPCDataChangedHandler(List<OPCChangeModel> arg);
|
|
|
|
}
|