diff options
author | Grant Limberg <glimberg@gmail.com> | 2015-10-21 20:29:03 -0700 |
---|---|---|
committer | Grant Limberg <glimberg@gmail.com> | 2015-10-21 20:29:03 -0700 |
commit | 5b6ddaa2d744dfc726829da0893a7f03c9043c8a (patch) | |
tree | 76b67a8ed02152597e81fd2366c0e5e7a83bc2e2 /windows/WinUI/ZeroTierStatus.cs | |
parent | 6471c1f4e26c0230b40bf0102a52493aa78236b9 (diff) | |
download | infinitytier-5b6ddaa2d744dfc726829da0893a7f03c9043c8a.tar.gz infinitytier-5b6ddaa2d744dfc726829da0893a7f03c9043c8a.zip |
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.
Diffstat (limited to 'windows/WinUI/ZeroTierStatus.cs')
-rw-r--r-- | windows/WinUI/ZeroTierStatus.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/windows/WinUI/ZeroTierStatus.cs b/windows/WinUI/ZeroTierStatus.cs new file mode 100644 index 00000000..9eafdb26 --- /dev/null +++ b/windows/WinUI/ZeroTierStatus.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace WinUI +{ + public class ZeroTierStatus + { + public string address; + public string publicIdentity; + public bool online; + public bool tcpFallbackActive; + public int versionMajor; + public int versionMinor; + public int versionRev; + public string version; + public UInt64 clock; + } +} |