forked from bencorn/traceroute
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added IP details clicking the IP in the list
- Loading branch information
Showing
13 changed files
with
173 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,32 @@ | ||
namespace TraceRoute.Models | ||
using System.Text.Json.Serialization; | ||
|
||
namespace TraceRoute.Models | ||
{ | ||
public class IpApiResponse | ||
{ | ||
public string? query { get; set; } | ||
public string? status { get; set; } | ||
public string? continent { get; set; } | ||
public string? continentCode { get; set; } | ||
public string? country { get; set; } | ||
public string? countryCode { get; set; } | ||
public string? region { get; set; } | ||
public string? regionName { get; set; } | ||
public string? city { get; set; } | ||
public string? district { get; set; } | ||
public string? zip { get; set; } | ||
public double? lat { get; set; } | ||
public double? lon { get; set; } | ||
public string? timezone { get; set; } | ||
public double? offset { get; set; } | ||
public string? currency { get; set; } | ||
public string? isp { get; set; } | ||
public string? query { get; set; } | ||
public string? org { get; set; } | ||
[JsonPropertyName("as")] | ||
public string? _as { get; set; } | ||
public string? asname { get; set; } | ||
public bool? mobile { get; set; } | ||
public bool? proxy { get; set; } | ||
public bool? hosting { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters