From 5b6ddaa2d744dfc726829da0893a7f03c9043c8a Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Wed, 21 Oct 2015 20:29:03 -0700 Subject: Base windows UI is working. * No joining/leaving networks yet, but they do display. * Nothing is updated yet after first load of the app. Need to set up a background task to run updates. --- windows/WinUI/ZeroTierNetwork.cs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 windows/WinUI/ZeroTierNetwork.cs (limited to 'windows/WinUI/ZeroTierNetwork.cs') diff --git a/windows/WinUI/ZeroTierNetwork.cs b/windows/WinUI/ZeroTierNetwork.cs new file mode 100644 index 00000000..2dec53d2 --- /dev/null +++ b/windows/WinUI/ZeroTierNetwork.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace WinUI +{ + public class ZeroTierNetwork + { + public string nwid; + public string mac; + public string name; + public string status; + public string type; + public int mtu; + public bool dhcp; + public bool bridge; + public bool broadcastEnabled; + public int portError; + public int netconfRevision; + public string[] multicastSubscriptions; + public string[] assignedAddresses; + public string portDeviceName; + } +} -- cgit v1.2.3