Skip to main content

Mountain/Binary/Build/DnsCommands/
DnsServerInfo.rs

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