bloxstrap/Bloxstrap/Models/IPInfoResponse.cs
2024-04-14 21:35:08 +01:00

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; }
}
}