Move towards explicit types

This commit is contained in:
2024-01-05 15:22:16 -08:00
parent db05b0b815
commit 5b367121c4
4 changed files with 15 additions and 15 deletions

View File

@@ -9,7 +9,7 @@ namespace AS1024.GeoFeed.GeoFeedBuilder
{
StringBuilder csvContent = new();
foreach (var feed in geoFeeds)
foreach (IPGeoFeed feed in geoFeeds)
{
csvContent.AppendLine($"{feed.Prefix},{feed.GeolocCountry},{feed.GeolocRegion},{feed.GeolocCity},");
}