using RobotNet.VDA5050.Type; using RobotNet10.RobotApp.Services.Robot.Actions; namespace RobotNet10.RobotApp.Interfaces; public interface IRobotActionProvider { bool IsInitialized { get; } RobotAction GetRobotAction(ActionType type); RobotAction[] GetRobotActions(); }