diff options
| author | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-04 12:39:57 -0700 |
|---|---|---|
| committer | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-04 12:39:57 -0700 |
| commit | 4762311977a2ebe26c6ac140bdcfc44d7733ff9a (patch) | |
| tree | 472562a36c03dada81b72189c06b518aafed2bc0 /windows/WinUI/NetworkRoute.cs | |
| parent | a7718bae398c8e910142568d7116c8adedce9d71 (diff) | |
| download | infinitytier-4762311977a2ebe26c6ac140bdcfc44d7733ff9a.tar.gz infinitytier-4762311977a2ebe26c6ac140bdcfc44d7733ff9a.zip | |
work in progress windows UI update
Diffstat (limited to 'windows/WinUI/NetworkRoute.cs')
| -rw-r--r-- | windows/WinUI/NetworkRoute.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/windows/WinUI/NetworkRoute.cs b/windows/WinUI/NetworkRoute.cs new file mode 100644 index 00000000..61616f44 --- /dev/null +++ b/windows/WinUI/NetworkRoute.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Newtonsoft.Json; + +namespace WinUI +{ + public class NetworkRoute + { + [JsonProperty("target")] + public string Target { get; set; } + + [JsonProperty("via")] + public string Via { get; set; } + + [JsonProperty("flags")] + public int Flags { get; set; } + + [JsonProperty("metric")] + public int Metric { get; set; } + } +} |
