using RealtimeData; namespace Mini8SlaveSim.Configuration { public interface ISharedConfig { HardwareAddress HardwareAddress { get; } bool IsLoaded { get; } void Load(string path); } }