namespace WingCloudServer.IpOfflineTools.Model { /// /// 腾讯云定位响应结果 /// public class IPServiceResult { /// /// ip地址 /// public string ip { get; set; } = string.Empty; /// /// 经纬度信息 /// public IPServiceLocationResult location { get; set; } = new IPServiceLocationResult(); /// /// 地区信息 /// public IPServiceNationResult ad_info { get; set; } = new IPServiceNationResult(); } }