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