初始刷

This commit is contained in:
2024-11-28 13:36:05 +08:00
parent b9b7c9090e
commit 88ebd4c300
753 changed files with 62888 additions and 64 deletions

View File

@@ -0,0 +1,25 @@
namespace ZR.Infrastructure.IPTools.Model
{
public class IpInfo
{
public string IpAddress { get; set; }
public string Country { get; set; }
//public string CountryCode { get; set; }
public string Province { get; set; }
//public string ProvinceCode { get; set; }
public string City { get; set; }
//public string PostCode { get; set; }
public string NetworkOperator { get; set; }
//public double? Latitude { get; set; } = 0d;
//public double? Longitude { get; set; } = 0d;
//public int? AccuracyRadius { get; set; }
}
}