using RobotNet10.RobotApp.Services.Robot; using RobotNet10.RobotApp.Services.Simulation; namespace RobotNet10.RobotApp.Services.ConfigManager; /// /// Service for managing robot configurations /// public interface IRobotConfiguration { /// /// Get Robot Physical configuration /// RobotPhysicalConfig GetRobotPhysicalConfig(); /// /// Get Simulation configuration /// SimulationConfig GetSimulationConfig(); }