mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
15 lines
347 B
C#
15 lines
347 B
C#
namespace Bloxstrap.Models.APIs
|
|
{
|
|
public class IPInfoResponse
|
|
{
|
|
[JsonPropertyName("city")]
|
|
public string City { get; set; } = null!;
|
|
|
|
[JsonPropertyName("country")]
|
|
public string Country { get; set; } = null!;
|
|
|
|
[JsonPropertyName("region")]
|
|
public string Region { get; set; } = null!;
|
|
}
|
|
}
|