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