summaryrefslogtreecommitdiff
path: root/windows/WinUI/ZeroTierNetwork.cs
diff options
context:
space:
mode:
Diffstat (limited to 'windows/WinUI/ZeroTierNetwork.cs')
-rw-r--r--windows/WinUI/ZeroTierNetwork.cs15
1 files changed, 12 insertions, 3 deletions
diff --git a/windows/WinUI/ZeroTierNetwork.cs b/windows/WinUI/ZeroTierNetwork.cs
index cce65441..6a6f8498 100644
--- a/windows/WinUI/ZeroTierNetwork.cs
+++ b/windows/WinUI/ZeroTierNetwork.cs
@@ -42,13 +42,22 @@ namespace WinUI
[JsonProperty("netconfRevision")]
public int NetconfRevision { get; set; }
- [JsonProperty("multicastSubscriptions")]
- public string[] MulticastSubscriptions { get; set; }
-
[JsonProperty("assignedAddresses")]
public string[] AssignedAddresses { get; set; }
+ [JsonProperty("routes")]
+ public NetworkRoute[] Routes { get; set; }
+
[JsonProperty("portDeviceName")]
public string DeviceName { get; set; }
+
+ [JsonProperty("allowManaged")]
+ public bool AllowManaged { get; set; }
+
+ [JsonProperty("allowGlobal")]
+ public bool AllowGlobal { get; set; }
+
+ [JsonProperty("allowDefault")]
+ public bool AllowDefault { get; set; }
}
}