v2rayN/v2rayN/ServiceLib/Models/IPAPIInfo.cs

13 lines
395 B
C#
Raw Normal View History

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