Code cleanup

This commit is contained in:
pcjones
2024-09-04 19:30:31 +02:00
parent 4db26e374f
commit 238bd9cc60
6 changed files with 15 additions and 44 deletions

View File

@@ -56,33 +56,3 @@ public static class Helper
}
}
}
public class IpInfo
{
[JsonPropertyName("ip")]
public string Ip { get; set; }
[JsonPropertyName("hostname")]
public string Hostname { get; set; }
[JsonPropertyName("city")]
public string City { get; set; }
[JsonPropertyName("region")]
public string Region { get; set; }
[JsonPropertyName("country")]
public string Country { get; set; }
[JsonPropertyName("loc")]
public string Loc { get; set; }
[JsonPropertyName("org")]
public string Org { get; set; }
[JsonPropertyName("postal")]
public string Postal { get; set; }
[JsonPropertyName("timezone")]
public string Timezone { get; set; }
}