IpInfo.cs 629 B

12345678910111213141516171819202122232425
  1. namespace ZR.Infrastructure.IPTools.Model
  2. {
  3. public class IpInfo
  4. {
  5. public string IpAddress { get; set; }
  6. public string Country { get; set; }
  7. //public string CountryCode { get; set; }
  8. public string Province { get; set; }
  9. //public string ProvinceCode { get; set; }
  10. public string City { get; set; }
  11. //public string PostCode { get; set; }
  12. public string NetworkOperator { get; set; }
  13. //public double? Latitude { get; set; } = 0d;
  14. //public double? Longitude { get; set; } = 0d;
  15. //public int? AccuracyRadius { get; set; }
  16. }
  17. }