25 lines
601 B
C#
25 lines
601 B
C#
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; }
|
|
}
|
|
}
|
|
|