using JNPF.DependencyInjection;
namespace JNPF.Common.Net;
///
/// IP位置信息类.
///
[SuppressSniffer]
public class IpLocation
{
///
/// IP地址.
///
public string? Ip { get; set; }
///
/// IP地址所属国家.
///
public string? Country { get; set; }
///
/// 位置信息.
///
public string? Local { get; set; }
}