IPAddress.cs
1/*
2 UdgerParser - Local parser lib
3
4 UdgerParser class parses useragent strings based on a database downloaded from udger.com
5
6
7 author The Udger.com Team (info@udger.com)
8 copyright Copyright (c) Udger s.r.o.
9 license GNU Lesser General Public License
10 link https://udger.com/products/local_parser
11 */
12
13namespace Udger.Parser
14{
15 public class IPAddress
16 {
17
18 #region Properties
19 public string Ip { get; set; }
20 public string IpVer { get; set; }
21 public string IpClassification { get; set; }
22 public string IpClassificationCode { get; set; }
23 public string IpHostname { get; set; }
24 public string IpLastSeen { get; set; }
25 public string IpCountry { get; set; }
26 public string IpCountryCode { get; set; }
27 public string IpCity { get; set; }
28 public string CrawlerName { get; set; }
29 public string CrawlerVer { get; set; }
30 public string CrawlerVerMajor { get; set; }
31 public string CrawlerFamily { get; set; }
32 public string CrawlerFamilyCode { get; set; }
33 public string CrawlerFamilyHomepage { get; set; }
34 public string CrawlerFamilyVendor { get; set; }
35 public string CrawlerFamilyVendorCode { get; set; }
36 public string CrawlerFamilyVendorHomepage { get; set; }
37 public string CrawlerFamilyIcon { get; set; }
38 public string CrawlerFamilyInfoUrl { get; set; }
39 public string CrawlerLastSeen { get; set; }
40 public string CrawlerCategory { get; set; }
41 public string CrawlerCategoryCode { get; set; }
42 public string CrawlerRespectRobotstxt { get; set; }
43 public string DatacenterName { get; set; }
44 public string DatacenterNameCode { get; set; }
45 public string DatacenterHomepage { get; set; }
46 #endregion
47
48 }
49}