mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
15 lines
352 B
C#
15 lines
352 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class IPInfoResponse
|
|
{
|
|
[JsonPropertyName("ip")]
|
|
public string IP { get; set; } = null!;
|
|
|
|
[JsonPropertyName("country")]
|
|
public string Country { get; set; } = null!;
|
|
|
|
[JsonPropertyName("region")]
|
|
public string Region { get; set; } = null!;
|
|
}
|
|
}
|