NetworkRoute.cs 498 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Newtonsoft.Json;
  7. namespace WinUI
  8. {
  9. public class NetworkRoute
  10. {
  11. [JsonProperty("target")]
  12. public string Target { get; set; }
  13. [JsonProperty("via")]
  14. public string Via { get; set; }
  15. [JsonProperty("flags")]
  16. public int Flags { get; set; }
  17. [JsonProperty("metric")]
  18. public int Metric { get; set; }
  19. }
  20. }