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