From c666f92e359061c0a4c133ba090832a059298782 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Fri, 22 Sep 2017 15:33:09 -0700 Subject: new startup process UI for Windows --- windows/WinUI/CentralServer.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 windows/WinUI/CentralServer.cs (limited to 'windows/WinUI/CentralServer.cs') diff --git a/windows/WinUI/CentralServer.cs b/windows/WinUI/CentralServer.cs new file mode 100644 index 00000000..8e268653 --- /dev/null +++ b/windows/WinUI/CentralServer.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Newtonsoft.Json; + +namespace WinUI +{ + class CentralServer + { + public CentralServer() + { + ServerURL = "https://my.zerotier.com"; + } + + [JsonProperty("server_url")] + public string ServerURL { get; set; } + + [JsonProperty("api_key")] + public string APIKey { get; set; } + } +} -- cgit v1.2.3