mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-21 22:07:49 +00:00
change int to UInt64 for these properties
This commit is contained in:
parent
81cb4bc8d6
commit
502aa68bb7
@ -13,10 +13,10 @@ namespace WinUI
|
|||||||
public string Address { get; set; }
|
public string Address { get; set; }
|
||||||
|
|
||||||
[JsonProperty("lastUnicastFrame")]
|
[JsonProperty("lastUnicastFrame")]
|
||||||
public int LastUnicastFrame { get; set; }
|
public UInt64 LastUnicastFrame { get; set; }
|
||||||
|
|
||||||
[JsonProperty("lastMulticastFrame")]
|
[JsonProperty("lastMulticastFrame")]
|
||||||
public int LastMulticastFrame { get; set; }
|
public UInt64 LastMulticastFrame { get; set; }
|
||||||
|
|
||||||
[JsonProperty("versionMajor")]
|
[JsonProperty("versionMajor")]
|
||||||
public int VersionMajor { get; set; }
|
public int VersionMajor { get; set; }
|
||||||
|
@ -13,10 +13,10 @@ namespace WinUI
|
|||||||
public string Address { get; set; }
|
public string Address { get; set; }
|
||||||
|
|
||||||
[JsonProperty("lastSend")]
|
[JsonProperty("lastSend")]
|
||||||
public int LastSend { get; set; }
|
public UInt64 LastSend { get; set; }
|
||||||
|
|
||||||
[JsonProperty("lastReceive")]
|
[JsonProperty("lastReceive")]
|
||||||
public int LastReceive { get; set; }
|
public UInt64 LastReceive { get; set; }
|
||||||
|
|
||||||
[JsonProperty("fixed")]
|
[JsonProperty("fixed")]
|
||||||
public bool Fixed { get; set; }
|
public bool Fixed { get; set; }
|
||||||
|
Loading…
Reference in New Issue
Block a user