using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HslCommunication.ModBus
{
///
/// 监视使用的数据缓存
///
internal struct MonitorAddress
{
///
/// 地址
///
public ushort Address;
///
/// 原有的值
///
public short ValueOrigin;
///
/// 新的值
///
public short ValueNew;
}
}