namespace RobotNet10.FleetManager.Script; /// /// Represents the result of a robot operation, including success status and a descriptive message. /// /// Indicates whether the operation completed successfully. if successful; otherwise, . /// A descriptive message providing details about the operation result. May contain error information if the operation failed. public record RobotResult(bool IsSuccess, string Message);