bloxstrap/Bloxstrap/Models/IPInfoResponse.cs
2024-04-15 00:43:44 +01:00

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