work in progress windows UI update

This commit is contained in:
Grant Limberg 2016-11-04 12:39:57 -07:00
parent a7718bae39
commit 4762311977
6 changed files with 93 additions and 8 deletions

View file

@ -42,13 +42,22 @@ namespace WinUI
[JsonProperty("netconfRevision")]
public int NetconfRevision { get; set; }
[JsonProperty("multicastSubscriptions")]
public string[] MulticastSubscriptions { get; set; }
[JsonProperty("assignedAddresses")]
public string[] AssignedAddresses { get; set; }
[JsonProperty("routes")]
public NetworkRoute[] Routes { get; set; }
[JsonProperty("portDeviceName")]
public string DeviceName { get; set; }
[JsonProperty("allowManaged")]
public bool AllowManaged { get; set; }
[JsonProperty("allowGlobal")]
public bool AllowGlobal { get; set; }
[JsonProperty("allowDefault")]
public bool AllowDefault { get; set; }
}
}