You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
601 B
C#

8 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlaywrightStudy.Core.TenAPI
{
/// <summary>
/// 获取IP信息 响应类
/// </summary>
public class GetIP
{
public string ip { get; set; }
public string country { get; set; }
public string province { get; set; }
public string city { get; set; }
public string area { get; set; }
public string isp { get; set; }
public string os { get; set; }
public string browser { get; set; }
}
}