mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 13:42:24 +00:00
13 lines
No EOL
395 B
C#
13 lines
No EOL
395 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; }
|
|
}
|
|
} |