bloxstrap/Bloxstrap/Models/APIs/IPInfoResponse.cs
2024-09-15 20:58:28 +01:00

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