1//! Basic DNS server information returned to the webview by 2//! `dns_get_server_info`. 3 4use serde::{Deserialize, Serialize}; 5 6#[derive(Debug, Clone, Serialize, Deserialize)] 7pub struct DnsServerInfo { 8 pub port:u16, 9 10 pub is_running:bool, 11 12 pub startup_time:String, 13}