import Foundation /// Raw output of an on-demand network diagnostic (ping/traceroute/DNS lookup) run from the /// router against a chosen LAN device — see `NetworkToolsService`. Shown verbatim rather than /// parsed into a structured UI: RouterOS' exact output format for these tools isn't verified /// against live hardware yet (same caution this app applies elsewhere after finding real /// formatting surprises in `/interface print`/`monitor-traffic` output), so showing the raw text /// is both safer and — until confirmed otherwise — the only honest option. struct NetworkToolResult: Identifiable { let id = UUID() let title: String let output: String }