ISharedConfig.cs 224 B

1234567891011
  1. using RealtimeData;
  2. namespace Mini8SlaveSim.Configuration
  3. {
  4. public interface ISharedConfig
  5. {
  6. HardwareAddress HardwareAddress { get; }
  7. bool IsLoaded { get; }
  8. void Load(string path);
  9. }
  10. }