Browse Source

change int to UInt64 for these properties

Grant Limberg 9 years ago
parent
commit
502aa68bb7
2 changed files with 4 additions and 4 deletions
  1. 2 2
      windows/WinUI/ZeroTierPeer.cs
  2. 2 2
      windows/WinUI/ZeroTierPeerPhysicalPath.cs

+ 2 - 2
windows/WinUI/ZeroTierPeer.cs

@@ -13,10 +13,10 @@ namespace WinUI
         public string Address { get; set; }
 
         [JsonProperty("lastUnicastFrame")]
-        public int LastUnicastFrame { get; set; }
+        public UInt64 LastUnicastFrame { get; set; }
 
         [JsonProperty("lastMulticastFrame")]
-        public int LastMulticastFrame { get; set; }
+        public UInt64 LastMulticastFrame { get; set; }
 
         [JsonProperty("versionMajor")]
         public int VersionMajor { get; set; }

+ 2 - 2
windows/WinUI/ZeroTierPeerPhysicalPath.cs

@@ -13,10 +13,10 @@ namespace WinUI
         public string Address { get; set; }
 
         [JsonProperty("lastSend")]
-        public int LastSend { get; set; }
+        public UInt64 LastSend { get; set; }
 
         [JsonProperty("lastReceive")]
-        public int LastReceive { get; set; }
+        public UInt64 LastReceive { get; set; }
 
         [JsonProperty("fixed")]
         public bool Fixed { get; set; }