mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 13:42:24 +00:00
12 lines
351 B
C#
12 lines
351 B
C#
namespace ServiceLib.Models;
|
|
|
|
internal class IPAPIInfo
|
|
{
|
|
public string? ip { get; set; }
|
|
public string? city { get; set; }
|
|
public string? region { get; set; }
|
|
public string? region_code { get; set; }
|
|
public string? country { get; set; }
|
|
public string? country_name { get; set; }
|
|
public string? country_code { get; set; }
|
|
}
|