using Newtonsoft.Json;
namespace Masuit.Tools.Models
{
///
/// 淘宝IP接口信息
///
public class TaobaoIP
{
///
/// 返回状态码
///
[JsonProperty("code")]
public int Code { get; set; }
///
/// 数据
///
[JsonProperty("data")]
public IPData IpData { get; set; }
}
///
/// 淘宝IP接口信息
///
public class IPData
{
///
/// 国家
///
[JsonProperty("country")]
public string Country { get; set; }
///
/// 省
///
[JsonProperty("region")]
public string Region { get; set; }
///
/// 市
///
[JsonProperty("city")]
public string City { get; set; }
///
/// ISP
///
[JsonProperty("isp")]
public string Isp { get; set; }
}
}