Rename the GetGeofeed Method to Async

This commit is contained in:
2024-01-18 16:15:41 -08:00
parent 3a56e2426e
commit e0189381f1
6 changed files with 5 additions and 75 deletions

View File

@@ -5,6 +5,6 @@ namespace AS1024.GeoFeed.Core.Interfaces
public interface IGeoFeedProvider
{
public string GeoFeedProviderName { get; }
public Task<List<IPGeoFeed>> GetGeoFeedData();
public Task<List<IPGeoFeed>> GetGeoFeedDataAsync();
}
}