- using ModbusSimulationProtocol.Services;
- namespace Mini8SlaveSim.Services
- {
- public interface ISlaveManagementService
- {
- byte WaitingForCreating { get; }
- void AddSlave(byte slaveId);
- Dictionary<byte, ModbusSlaveService> Slaves { get; }
- event EventHandler<byte>? SlaveAdded;
- }
- }
|