2015-10-23 22:36:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace WinUI
|
|
|
|
|
{
|
|
|
|
|
public class ZeroTierPeerPhysicalPath
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("address")]
|
|
|
|
|
public string Address { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("lastSend")]
|
2015-10-27 02:01:59 +00:00
|
|
|
|
public UInt64 LastSend { get; set; }
|
2015-10-23 22:36:42 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty("lastReceive")]
|
2015-10-27 02:01:59 +00:00
|
|
|
|
public UInt64 LastReceive { get; set; }
|
2015-10-23 22:36:42 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty("fixed")]
|
|
|
|
|
public bool Fixed { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("preferred")]
|
|
|
|
|
public bool Preferred { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|