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