Inital work on breaking out the core logic out of the MVC API Web App in preparation to migrating to minimal API's in a seperate project
This commit is contained in:
10
AS1024.GeoFeed.Core/Interfaces/GeoFeedProvider.cs
Normal file
10
AS1024.GeoFeed.Core/Interfaces/GeoFeedProvider.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using AS1024.GeoFeed.Models;
|
||||
|
||||
namespace AS1024.GeoFeed.Core.Interfaces
|
||||
{
|
||||
public interface IGeoFeedProvider
|
||||
{
|
||||
public string GeoFeedProviderName { get; }
|
||||
public Task<List<IPGeoFeed>> GetGeoFeedData();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user