namespace NModbus
{
///
/// Object simulation of a device memory map.
///
public interface ISlaveDataStore
{
///
/// Gets the descrete coils.
///
IPointSource CoilDiscretes { get; }
///
/// Gets the discrete inputs.
///
IPointSource CoilInputs { get; }
///
/// Gets the holding registers.
///
IPointSource HoldingRegisters { get; }
///
/// Gets the input registers.
///
IPointSource InputRegisters { get; }
}
}