mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-20 06:02:23 +00:00
13 lines
395 B
C#
13 lines
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; }
|
|||
|
}
|
|||
|
}
|