Add backend bridge support

This commit is contained in:
2025-05-26 19:12:18 +02:00
parent aac05b7faf
commit ff372800bd
3 changed files with 89 additions and 4 deletions

View File

@ -80,7 +80,9 @@ pub struct NetMacAddress {
#[serde(rename = "source")]
pub struct NetIntSourceXML {
#[serde(rename = "@network")]
pub network: String,
pub network: Option<String>,
#[serde(rename = "@bridge")]
pub bridge: Option<String>,
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]