namespace NModbus
{
///
/// Represents a memory map.
///
///
public interface IPointSource
{
///
/// Read a series of points.
///
///
///
///
TPoint[] ReadPoints(ushort startAddress, ushort numberOfPoints);
///
/// Write a series of points.
///
///
///
void WritePoints(ushort startAddress, TPoint[] points);
}
}